fix dockerfile

This commit is contained in:
areeqakbr 2025-03-10 10:23:49 +07:00
parent 17af307bf3
commit 58b8e5db0c
1 changed files with 3 additions and 1 deletions

View File

@ -11,8 +11,10 @@ RUN go mod download
# Copy the rest of the application source code
COPY . .
RUN go build -o app main.go
# Expose the application's port (change if needed)
EXPOSE 5678
# Command to run the application
CMD ["go", "run", "main.go"]
CMD ["./app"]