Add Dockerfile
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 27s
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 27s
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM golang:1.24-alpine
|
||||
|
||||
WORKDIR /app/web
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN go mod tidy
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["go", "run", "main.go"]
|
||||
Reference in New Issue
Block a user