diff --git a/Dockerfile b/Dockerfile index 9f249b1..ac74fd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,7 @@ RUN ls -la /app # Expose the application's port (change if needed) EXPOSE 5678 +RUN go build -o main . + # Command to run the application -CMD ["go", "run", "main.go"] +CMD ["./main"]