Add Dockerfile
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 27s

This commit is contained in:
2025-07-28 20:37:37 +02:00
parent 7516ce8f69
commit 1b49c6db5b

11
Dockerfile Normal file
View 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"]