This commit is contained in:
Christian Beutel
2024-06-15 19:53:50 +02:00
parent eef743b947
commit 7a6cb6c771
10 changed files with 36 additions and 11 deletions

View File

@@ -1,10 +1,10 @@
FROM node:slim AS runtime
WORKDIR /app
COPY . .
COPY ./dist dist/
COPY package*.json .
RUN npm install
RUN npm run build
RUN npm ci --omit=dev
ENV HOST=0.0.0.0
ENV PORT=4321