Files
status-dashboard/Dockerfile
jbergner afbd69d695
All checks were successful
build-binaries / build (, amd64, linux) (push) Has been skipped
build-binaries / build (, arm, 7, linux) (push) Has been skipped
build-binaries / build (, arm64, linux) (push) Has been skipped
build-binaries / build (.exe, amd64, windows) (push) Has been skipped
build-binaries / release (push) Has been skipped
release-tag / release-image (push) Successful in 5m53s
Update to Go-1.25.3
2025-10-21 07:26:11 +02:00

12 lines
260 B
Docker

FROM golang:1.25
WORKDIR /app
COPY go.mod ./
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 /services.json
VOLUME ["/data"]
EXPOSE 8080
CMD ["/goprg"]