Renovate Bot
bf4e3cccb7
This PR contains the following updates: | Package | Update | Change | |---|---|---| | alpine_3_19/curl | minor | `8.0.0-r0` -> `8.5.0-r0` | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNjguMCIsInVwZGF0ZWRJblZlciI6IjM3LjE2OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Reviewed-on: #9 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
10 lines
313 B
Docker
10 lines
313 B
Docker
FROM httpd:2.4.58-alpine
|
|
|
|
# renovate: datasource=repology depName=alpine_3_19/curl versioning=loose
|
|
ENV CURL_VERSION="8.5.0-r0"
|
|
# renovate: datasource=repology depName=alpine_3_19/wget versioning=loose
|
|
ENV WGET_VERSION="1.21.4-r0"
|
|
|
|
RUN apk add --no-cache \
|
|
curl="${CURL_VERSION}" \
|
|
wget="${WGET_VERSION}"
|