fix: fix docker build warnings

This commit is contained in:
Yarmo Mackenbach 2024-11-25 20:24:12 +01:00
parent 7f371d91e1
commit 28f15946d1
No known key found for this signature in database
GPG key ID: C248C28D432560ED

View file

@ -1,4 +1,4 @@
FROM node:20-alpine as builder FROM node:20-alpine AS builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
@ -26,4 +26,4 @@ COPY --from=builder /app/static /app/static
EXPOSE 3000 EXPOSE 3000
CMD node ./dist/ CMD ["node" "./dist/"]