From 353a525b0cdef7cda4bf7276e40ade630eeeb682 Mon Sep 17 00:00:00 2001 From: groot Date: Mon, 13 Jan 2025 20:50:04 +0000 Subject: [PATCH] Dockerfile aktualisiert --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 51d8edc..e4a4ce5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM golang:1.23.3 +COPY data/* /data 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"] \ No newline at end of file