Files
fritzbox_dyndns/Dockerfile
groot f60e808281
All checks were successful
release-tag / release-image (push) Successful in 42s
Dockerfile aktualisiert
2025-01-13 20:21:49 +00:00

8 lines
165 B
Docker

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