docker-determine-docker-tags/Dockerfile
renovate-bot be6e243a73
All checks were successful
continuous-integration/drone/push Build is passing
Update curlimages/curl Docker tag to v8.11.1 (#286)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [curlimages/curl](https://github.com/curl/curl-container) | stage | minor | `8.10.1` -> `8.11.1` |

---

### Release Notes

<details>
<summary>curl/curl-container (curlimages/curl)</summary>

### [`v8.11.1`](https://github.com/curl/curl-container/blob/HEAD/CHANGELOG.md#8111---2024-12-11)

[Compare Source](https://github.com/curl/curl-container/compare/8.11.0...8.11.1)

##### Changed

-   bump to curl 8.11.1
-   bump to alpine:3.21.0

### [`v8.11.0`](https://github.com/curl/curl-container/blob/HEAD/CHANGELOG.md#8110---2024-11-06)

[Compare Source](https://github.com/curl/curl-container/compare/8.10.1...8.11.0)

##### Changed

-   bump to curl 8.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNSIsInVwZGF0ZWRJblZlciI6IjM5LjU3LjQiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: #286
Co-authored-by: renovate-bot <bot@walbeck.it>
Co-committed-by: renovate-bot <bot@walbeck.it>
2025-01-03 11:38:22 +00:00

15 lines
697 B
Docker

FROM curlimages/curl:8.11.1@sha256:c1fe1679c34d9784c1b0d1e5f62ac0a79fca01fb6377cdd33e90473c6f9f9a69 as download
# renovate: datasource=git-tags depName=https://git.walbeck.it/walbeck-it/determine-docker-tags versioning=semver
ENV DETERMINE_DOCKER_TAGS_VERSION v0.1.10
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:8e432c787b5c0697dfbfd783120351d90fd5f23ba9fff29532bbdbb87bc13160
COPY --from=download /home/curl_user/determine-docker-tags.py /
CMD [ "/determine-docker-tags.py" ]