docker-determine-docker-tags/Dockerfile
renovate-bot 2c4f04ab66
All checks were successful
Test / lint (pull_request) Successful in 4s
Test / test (pull_request) Successful in 34s
Build and publish / lint (push) Successful in 3s
Build and publish / build (push) Successful in 53s
Update gcr.io/distroless/python3-debian12 Docker digest to 3b2a60d
2025-05-19 00:12:52 +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:3b2a60d07d4696022903afacfeb181471a7b5ca38ef1ba97409e3d6cceaa6c61
COPY --from=download /home/curl_user/determine-docker-tags.py /
CMD [ "/determine-docker-tags.py" ]