File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ARG VERSION
77WORKDIR /app/tailchat
88
99# Install dependencies
10- RUN npm install -g pnpm@8.2.0
10+ RUN npm install -g pnpm@8.3.1
1111RUN npm install -g tailchat-cli@latest
1212
1313# Add mc for minio
@@ -22,15 +22,15 @@ COPY ./server/package.json ./server/package.json
2222COPY ./server/tsconfig.json ./server/tsconfig.json
2323COPY ./package.json ./pnpm-lock.yaml ./pnpm-workspace.yaml ./.npmrc ./
2424COPY ./patches ./patches
25- RUN pnpm install
25+ RUN pnpm install --frozen-lockfile
2626
2727# Copy client
2828COPY ./client ./client
29- RUN pnpm install
29+ RUN pnpm install --frozen-lockfile
3030
3131# Copy all source
3232COPY . .
33- RUN pnpm install
33+ RUN pnpm install --frozen-lockfile
3434
3535# Build and cleanup (client and server)
3636ENV NODE_ENV=production
You can’t perform that action at this time.
0 commit comments