Files
realDynDNS/Dockerfile
Timo Behrendt 1ea43ac4cf
All checks were successful
CD / test (push) Successful in 48s
CD / Build and push (push) Successful in 3m1s
chore: upgrade from go 1.20 to 1.23 (#21)
Reviewed-on: #21
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2024-12-27 17:09:34 +01:00

14 lines
132 B
Docker

FROM golang:1.23-alpine
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o main .
CMD ["./main"]