15 lines
696 B
Docker
15 lines
696 B
Docker
FROM curlimages/curl:8.12.1@sha256:94e9e444bcba979c2ea12e27ae39bee4cd10bc7041a472c4727a558e213744e6 as download
|
|
|
|
# renovate: datasource=git-tags depName=https://git.walbeck.it/walbeck-it/determine-docker-tags versioning=semver
|
|
ENV DETERMINE_DOCKER_TAGS_VERSION v0.2.6
|
|
|
|
RUN set -ex; \
|
|
\
|
|
curl -o /home/curl_user/determine-docker-tags.py \
|
|
https://git.walbeck.it/walbeck-it/determine-docker-tags/raw/tag/${DETERMINE_DOCKER_TAGS_VERSION}/determine_docker_tags/__init__.py;
|
|
|
|
FROM gcr.io/distroless/python3-debian12@sha256:60e4bcd869b5beb3eca9972a98b2ce3a46e0e80539327b504dbbf792e5ea09ab
|
|
|
|
COPY --from=download /home/curl_user/determine-docker-tags.py /
|
|
|
|
CMD [ "/determine-docker-tags.py" ]
|