Files
fritzbox_dyndns/Dockerfile
groot 2359ff4bd2
All checks were successful
release-tag / release-image (push) Successful in 1m29s
Dockerfile aktualisiert
2025-01-12 18:49:27 +00:00

8 lines
158 B
Docker

FROM golang:1.23.3
WORKDIR /app
COPY go.mod ./
RUN go mod download
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /go-ddns
EXPOSE 8080
CMD ["/go-ddns"]