From 8b884143741c1ca9ba9658cbd9a1605591c7b1ec Mon Sep 17 00:00:00 2001 From: JustMichael Date: Sat, 30 Mar 2024 12:27:01 +0000 Subject: [PATCH] fix: forgot to update docker for new paths --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b749286a..eead6de9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN groupadd -g 1000 petio && \ # Copy all the build files from both frontend and backend COPY --from=builder --chown=petio:petio --chmod=0755 /build/pkg/frontend/build /app/views/frontend -COPY --from=builder --chown=petio:petio --chmod=0755 /build/pkg/api/dist/index.js /app/index.js +COPY --from=builder --chown=petio:petio --chmod=0755 /build/dist/api/index.js /app/index.js COPY ./scripts/docker / # Give our init script permission to be executed