diff --git a/Dockerfile b/Dockerfile index 1e7c81d..c27b5e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,8 +38,8 @@ ENV NODE_ENV=${NODE_ENV} ENV TZ="Europe/Oslo" EXPOSE 3000 -COPY public/ ./public/ +COPY ./public ./public/ COPY --from=app-build /app/build/ ./build/ -COPY --from=app-dependencies /app/node_modules/ ./node_modules/ +COPY --from=app-dependencies /app/node_modules ./node_modules - CMD ["/build/server/index.js"] \ No newline at end of file + CMD ["/app/build/server/index.js"] \ No newline at end of file