Files
freemoto/app/web/Dockerfile
Pedan 7516ce8f69
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 16s
Fixed CI build
2025-07-28 20:28:49 +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"]