small updates

This commit is contained in:
2022-05-06 12:39:07 +02:00
parent 3ab4eabf9b
commit c56b42feea
4 changed files with 7 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
FROM node:16-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm ci
COPY . .
RUN npm run build --modern
RUN npm run build
CMD ["node", "server"]