fix: fix ci copy error

This commit is contained in:
Yarmo Mackenbach 2023-08-25 15:49:55 +02:00
parent 3285d43be4
commit 7cc54d9fa2
No known key found for this signature in database
GPG key ID: 3C57D093219103A3

View file

@ -12,10 +12,10 @@ FROM node:16-alpine
WORKDIR /app WORKDIR /app
COPY --from=builder /app/package.json /app/package.json COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/dist /app/dist COPY --from=builder /app/dist/* /app/dist/
COPY --from=builder /app/content /app/content COPY --from=builder /app/content/* /app/content/
COPY --from=builder /app/views /app/views COPY --from=builder /app/views/* /app/views/
COPY --from=builder /app/static /app/static COPY --from=builder /app/static/* /app/static/
EXPOSE 3000 EXPOSE 3000