Files
freemoto/Dockerfile
Pedan 2407ff8d3f
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 29s
updated Dockerfile
2025-07-28 20:44:51 +02:00

11 lines
118 B
Docker

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