Files
freemoto/Dockerfile
pedan 1b49c6db5b
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 27s
Add Dockerfile
2025-07-28 20:37:37 +02:00

11 lines
111 B
Docker

FROM golang:1.24-alpine
WORKDIR /app/web
COPY . .
RUN go mod tidy
EXPOSE 8080
CMD ["go", "run", "main.go"]