From fef0e1105267eaeabb8ac7af2943234234c1b151 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Fri, 25 Aug 2023 15:55:54 +0200 Subject: [PATCH] fix: fix ci copy error --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a273a08..e724d2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,10 @@ FROM node:16-alpine WORKDIR /app 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 +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