fix: fix ci copy error

This commit is contained in:
Yarmo Mackenbach 2023-08-25 15:53:42 +02:00
parent 7cc54d9fa2
commit bc2f2b6a86
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 /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/package.json ./package.json
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/content ./content
COPY --from=builder /app/views ./views
COPY --from=builder /app/static ./static
EXPOSE 3000