diff --git a/Dockerfile b/Dockerfile index ec8f9b2..689c7a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,15 @@ FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . RUN npm run build FROM node:20-alpine WORKDIR /app COPY package*.json ./ -RUN npm ci --production +RUN npm install --production COPY --from=builder /app/dist ./dist -RUN mkdir -p public/icons +COPY --from=builder /app/public ./public EXPOSE 4321 CMD ["node", "dist/server/entry.mjs"] \ No newline at end of file