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