diff --git a/Dockerfile b/Dockerfile index 136a61a..d68359b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,9 @@ RUN npm run build FROM node:20-alpine WORKDIR /app COPY package*.json ./ -RUN npm install --production +RUN npm install COPY --from=builder /app/dist ./dist +COPY --from=builder /app/node_modules ./node_modules RUN apk add --no-cache sqlite-libs