Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update argocd-image-updater version to v0.15.1 #1496

Merged
merged 2 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions argocd-image-updater/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM quay.io/cybozu/golang:1.21-jammy AS builder
FROM ghcr.io/cybozu/golang:1.23-jammy AS builder

ENV ARGOCD_IMAGE_UPDATER_VERSION=0.12.2
ENV ARGOCD_IMAGE_UPDATER_VERSION=0.15.1

WORKDIR /work

Expand All @@ -10,15 +10,15 @@ WORKDIR /work/argocd-image-updater
RUN mkdir -p dist && \
make controller

FROM quay.io/cybozu/ubuntu:22.04
FROM ghcr.io/cybozu/ubuntu:22.04
LABEL org.opencontainers.image.source="https://github.com/cybozu/neco-containers"

RUN groupadd -g 10000 argocd && \
useradd -r -u 10000 -g argocd argocd && \
mkdir -p /home/argocd && \
chown argocd:argocd /home/argocd && \
apt-get update && \
apt-get install -y --no-install-recommends git openssh-client python3 python3-pip && \
apt-get install -y --no-install-recommends git openssh-client python3 python3-pip tini gpg gpg-agent && \
pip3 install --upgrade pip && \
takahiro-yamada marked this conversation as resolved.
Show resolved Hide resolved
pip3 install awscli && \
apt-get clean && \
takahiro-yamada marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -30,4 +30,4 @@ COPY --from=builder /work/argocd-image-updater/LICENSE /usr/local/argocd-image-u

USER argocd

ENTRYPOINT ["/usr/local/bin/argocd-image-updater"]
ENTRYPOINT ["/sbin/tini", "--", "/usr/local/bin/argocd-image-updater"]
2 changes: 1 addition & 1 deletion argocd-image-updater/TAG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2.2
0.15.1.1
Loading