From f2189e7159d503893946cee45e95d11bd9d941f0 Mon Sep 17 00:00:00 2001 From: areeqakbr Date: Wed, 26 Feb 2025 14:13:25 +0700 Subject: [PATCH] dockerfile test --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"]