Skip to content

Commit 9d2f8d0

Browse files
committed
DNM: test bugfix
1 parent 1061b8b commit 9d2f8d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:rc-bullseye AS builder
1+
FROM golang:1.24.2 AS builder
22

33
LABEL maintainer="Jennings Liu <jenningsloy318@gmail.com>"
44

@@ -13,11 +13,11 @@ ENV GO111MODULE=on
1313

1414
# Build dependencies
1515
RUN mkdir -p /go/src/github.com/ && \
16-
git clone -b stackhpc https://github.com/stackhpc/redfish_exporter /go/src/github.com/stackhpc/redfish_exporter && \
16+
git clone -b bugfix/storage-volume https://github.com/stackhpc/redfish_exporter /go/src/github.com/stackhpc/redfish_exporter && \
1717
cd /go/src/github.com/stackhpc/redfish_exporter && \
1818
make build
1919

20-
FROM golang:rc-bullseye
20+
FROM golang:1.24.2
2121

2222
COPY --from=builder /go/src/github.com/stackhpc/redfish_exporter/build/redfish_exporter /usr/local/bin/redfish_exporter
2323
RUN mkdir /etc/prometheus

0 commit comments

Comments
 (0)