From f5eec3b4694adab5beb2a5027351e2632bb8c832 Mon Sep 17 00:00:00 2001 From: Isaac Date: Wed, 15 Feb 2023 01:13:35 +0000 Subject: [PATCH] style: fix weird space --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 46c8cf0..940246e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /build COPY package.json pnpm-lock.yaml ./ COPY --link scripts scripts # install python etc so node-gyp works for the optional dependencies -RUN apk add --no-cache make gcc g++ python3 +RUN apk add --no-cache make gcc g++ python3 # install pnpm to make dependency installation faster (because it has a lockfile) RUN npm install -g pnpm # install dependencies, CI=true to skip pre/postinstall scripts