docker-determine-docker-tags/Dockerfile
renovate-bot 6133f4c9bc
All checks were successful
Test / lint (pull_request) Successful in 5s
Test / test (pull_request) Successful in 30s
Build and publish / lint (push) Successful in 3s
Build and publish / build (push) Successful in 39s
Update gcr.io/distroless/python3-debian12 Docker digest to 224c734
2025-04-06 23:11:55 +00:00

15 lines
696 B
Docker

FROM curlimages/curl:8.13.0@sha256:d43bdb28bae0be0998f3be83199bfb2b81e0a30b034b6d7586ce7e05de34c3fd 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:224c734ca6de7cef2350e82ff9e01b4b56ce22ca3cbef3936018bfb171a7c6de
COPY --from=download /home/curl_user/determine-docker-tags.py /
CMD [ "/determine-docker-tags.py" ]