diff --git a/Dockerfile b/Dockerfile index 8fcf2aa..3cbf745 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,10 @@ FROM node:16-alpine WORKDIR /app COPY --from=builder /app/package.json /app/package.json -COPY --from=builder /app/dist /app/dist -COPY --from=builder /app/content /app/content -COPY --from=builder /app/views /app/views -COPY --from=builder /app/static /app/static +COPY --from=builder /app/dist/* /app/dist/ +COPY --from=builder /app/content/* /app/content/ +COPY --from=builder /app/views/* /app/views/ +COPY --from=builder /app/static/* /app/static/ EXPOSE 3000