dockerfile test

This commit is contained in:
areeqakbr 2025-02-26 14:13:25 +07:00
parent 6fddace32a
commit f2189e7159
1 changed files with 3 additions and 1 deletions

View File

@ -16,5 +16,7 @@ RUN ls -la /app
# Expose the application's port (change if needed) # Expose the application's port (change if needed)
EXPOSE 5678 EXPOSE 5678
RUN go build -o main .
# Command to run the application # Command to run the application
CMD ["go", "run", "main.go"] CMD ["./main"]