From a9d949b161ac7f2d2ae13ebf46cedbc9ea8afcfe Mon Sep 17 00:00:00 2001 From: maddalax Date: Sat, 21 Sep 2024 13:22:31 -0500 Subject: [PATCH] copy proper dir --- htmgo-site/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htmgo-site/Dockerfile b/htmgo-site/Dockerfile index 09f66da..3702349 100644 --- a/htmgo-site/Dockerfile +++ b/htmgo-site/Dockerfile @@ -26,11 +26,11 @@ FROM gcr.io/distroless/base-debian11 # Set the working directory inside the container WORKDIR /app -# Copy the Go binary from the builder stage -COPY --from=builder /app/server . +# Copy the Go binary from the builder stage +COPY --from=builder /app/dist . # Expose the necessary port (replace with your server port) EXPOSE 3000 # Command to run the binary -CMD ["./server"] \ No newline at end of file +CMD ["./htmgo-site"] \ No newline at end of file