From 876959dd7c68f7c4099d0528185745c766ff8c54 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Fri, 25 Aug 2023 16:32:07 +0200 Subject: [PATCH] fix: fix ci copy error --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e724d2a..a6b2adb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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