Dockerfile aktualisiert
Some checks failed
build-binaries / build (, amd64, linux) (push) Has been cancelled
build-binaries / build (, arm, 7, linux) (push) Has been cancelled
build-binaries / build (, arm64, linux) (push) Has been cancelled
build-binaries / build (.exe, amd64, windows) (push) Has been cancelled
release-tag / release-image (push) Has been cancelled
build-binaries / release (push) Has been cancelled

This commit is contained in:
2025-10-15 08:33:20 +00:00
parent 2e34c48354
commit d65f53d00f

View File

@@ -5,7 +5,8 @@ RUN go mod download
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /goprg
RUN mkdir /data
COPY services.json /data/services.json
#COPY services.json /data/services.json
COPY services.json /services.json
VOLUME ["/data"]
EXPOSE 8080
CMD ["/goprg"]