fix(build): missing concat EOL on Dockerfile (#955)

This commit is contained in:
Fabricio Silva 2023-05-23 11:10:55 +01:00 committed by GitHub
parent f774831d76
commit e63719a57d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -2,8 +2,8 @@
FROM node:18.7.0-alpine3.16 AS web-builder
COPY . ./
WORKDIR /web
RUN corepack enable &&
pnpm install --frozen-lockfile &&
RUN corepack enable && \
pnpm install --frozen-lockfile && \
pnpm run build
# build app