File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,18 @@ FROM alpine:latest
14
14
15
15
RUN apk update && \
16
16
apk upgrade && \
17
- apk add --no-cache aws-cli ca-certificates git openssh-client tini
17
+ apk add ca-certificates git openssh-client python3 py3-pip tini && \
18
+ pip3 install --upgrade pip && \
19
+ pip3 install awscli && \
20
+ rm -rf /var/cache/apk/*
18
21
19
- RUN mkdir -p /usr/local/bin /app/config
22
+ RUN mkdir -p /usr/local/bin
23
+ RUN mkdir -p /app/config
20
24
RUN adduser --home "/app" --disabled-password --uid 1000 argocd
21
25
22
26
COPY --from=builder /src/argocd-image-updater/dist/argocd-image-updater /usr/local/bin/
23
27
COPY hack/git-ask-pass.sh /usr/local/bin/git-ask-pass.sh
24
28
25
29
USER 1000
26
30
27
- ENTRYPOINT ["/sbin/tini" , "--" , "/usr/local/bin/argocd-image-updater" ]
31
+ ENTRYPOINT ["/sbin/tini" , "--" , "/usr/local/bin/argocd-image-updater" ]
You can’t perform that action at this time.
0 commit comments