fix: fix ci copy error

This commit is contained in:
Yarmo Mackenbach 2023-08-25 16:32:07 +02:00
parent fef0e11052
commit 876959dd7c
No known key found for this signature in database
GPG key ID: 3C57D093219103A3

View file

@ -11,11 +11,11 @@ RUN yarn run build
FROM node:16-alpine
WORKDIR /app
COPY --from=builder /app/package.json ./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/package.json .
COPY --from=builder /app/dist/ .
COPY --from=builder /app/content/ .
COPY --from=builder /app/views/ .
COPY --from=builder /app/static/ .
EXPOSE 3000