httpd/Dockerfile
Michael Grote 44de18db37
Some checks failed
build / build (push) Successful in 13s
linter / gitleaks (push) Successful in 2s
linter / hadolint (push) Failing after 3s
disable versions in packages
2024-08-30 17:40:11 +02:00

10 lines
281 B
Docker

FROM httpd:2.4.62-alpine3.20
# renovate: datasource=repology depName=alpine_3_20/curl versioning=loose
ENV CURL_VERSION="8.9.1-r0"
# renovate: datasource=repology depName=alpine_3_20/wget versioning=loose
ENV WGET_VERSION="1.24.5-r0"
RUN apk add --no-cache \
curl \
wget