File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: 2
22jobs :
33 app :
44 docker :
5- - image : cimg/go:1.23
5+ - image : cimg/go:1.23@sha256:d89753cdb9f31e48c3a91aee6e73afcb23ad7e44abf7088491d8a9f002a71b67
66
77 steps :
88 - checkout
2525
2626 publish-github-release :
2727 docker :
28- - image : cimg/go:1.23
28+ - image : cimg/go:1.23@sha256:d89753cdb9f31e48c3a91aee6e73afcb23ad7e44abf7088491d8a9f002a71b67
2929 steps :
3030 - attach_workspace :
3131 at : .
Original file line number Diff line number Diff line change 1- FROM golang:1.23-alpine AS build
1+ FROM golang:1.23-alpine@sha256:c23339199a08b0e12032856908589a6d41a0dab141b8b3b21f156fc571a3f1d3 AS build
22WORKDIR /go/src/github.com/RoboCup-SSL/ssl-simulation-controller
33COPY go.mod go.mod
44COPY go.sum go.sum
@@ -8,7 +8,7 @@ COPY internal internal
88RUN go install ./...
99
1010# Start fresh from a smaller image
11- FROM alpine:3.21
11+ FROM alpine:3.21@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
1212COPY --from=build /go/bin/ssl-simulation-controller /app/ssl-simulation-controller
1313USER 1000
1414ENTRYPOINT ["/app/ssl-simulation-controller" ]
You can’t perform that action at this time.
0 commit comments