Use semver tidle range for `libgit2-dev` package
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
88c76c50a3
commit
38e2e58c54
|
@ -2,7 +2,7 @@ FROM golang:1.15-alpine
|
|||
|
||||
# Add any build or testing essential system packages
|
||||
RUN apk add --no-cache build-base git pkgconf
|
||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev=1.1.0-r1
|
||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev~=1.1.0
|
||||
|
||||
# Use the GitHub Actions uid:gid combination for proper fs permissions
|
||||
RUN addgroup -g 116 -S test && adduser -u 1001 -S -g test test
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
FROM golang:1.15-alpine as builder
|
||||
|
||||
RUN apk add gcc pkgconfig libc-dev
|
||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev=1.1.0-r1
|
||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev~=1.1.0
|
||||
|
||||
WORKDIR /workspace
|
||||
|
||||
|
@ -31,7 +31,7 @@ FROM alpine:3.12
|
|||
LABEL org.opencontainers.image.source="https://github.com/fluxcd/source-controller"
|
||||
|
||||
RUN apk add --no-cache ca-certificates tini
|
||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2=1.1.0-r1
|
||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community libgit2-dev~=1.1.0
|
||||
|
||||
COPY --from=builder /workspace/source-controller /usr/local/bin/
|
||||
|
||||
|
|
Loading…
Reference in New Issue