the final fix

This commit is contained in:
2023-01-08 19:07:59 +02:00
parent 4e9f42074e
commit 7c43122b4a
6 changed files with 25 additions and 243 deletions

View File

@@ -3,15 +3,15 @@ FROM node:18-alpine
WORKDIR /usr/src/app
COPY package.json ./
#COPY pnpm-lock.yaml ./
COPY pnpm-lock.yaml ./
#RUN npm install -g pnpm
RUN npm install -g pnpm
RUN npm i
RUN pnpm i
COPY . .
RUN npm run build
RUN pnpm build
EXPOSE 3000