File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
.github/actions/run-tests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM golang:1.15-alpine
22
33# Add any build or testing essential system packages
44RUN apk add --no-cache build-base git pkgconf
5- RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev=1.1.0-r1
5+ RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev~ =1.1.0
66
77# Use the GitHub Actions uid:gid combination for proper fs permissions
88RUN addgroup -g 116 -S test && adduser -u 1001 -S -g test test
Original file line number Diff line number Diff line change 22FROM golang:1.15-alpine as builder
33
44RUN apk add gcc pkgconfig libc-dev
5- RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev=1.1.0-r1
5+ RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev~ =1.1.0
66
77WORKDIR /workspace
88
@@ -31,7 +31,7 @@ FROM alpine:3.12
3131LABEL org.opencontainers.image.source="https://github.com/fluxcd/source-controller"
3232
3333RUN apk add --no-cache ca-certificates tini
34- RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2=1.1.0-r1
34+ RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev~ =1.1.0
3535
3636COPY --from=builder /workspace/source-controller /usr/local/bin/
3737
You can’t perform that action at this time.
0 commit comments