From 7e6414521b821e54b711c13f4803f1bcd205bb7a Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Tue, 16 Apr 2024 11:36:25 -0300 Subject: [PATCH] fix: docker image generation (#8) --- earthly-dockerfile/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/earthly-dockerfile/Dockerfile b/earthly-dockerfile/Dockerfile index faf3b38..b044a8c 100644 --- a/earthly-dockerfile/Dockerfile +++ b/earthly-dockerfile/Dockerfile @@ -34,8 +34,8 @@ RUN yarn install --production # Copy the transpiled JavaScript from the builder stage COPY --from=builder /app/dist ./dist -COPY --from=builder /app/rust/index.node ./rust/ -COPY --from=builder /app/rust/index.d.ts ./rust/ +COPY --from=builder /app/rust/index.node ./dist/rust/ +COPY --from=builder /app/rust/index.d.ts ./dist/rust/ # Set the command to start the node server CMD ["node", "dist/src/index.js"]