Dockerfile aktualisiert
All checks were successful
release-tag / release-image (push) Successful in 44s

This commit is contained in:
2025-01-13 20:40:47 +00:00
parent f60e808281
commit 81fff6b9ac

View File

@@ -3,6 +3,7 @@ WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY *.go ./
COPY data/* /data
RUN CGO_ENABLED=0 GOOS=linux go build -o /go-ddns
EXPOSE 8080
CMD ["/go-ddns"]