httpd/Dockerfile
Michael Grote edaf46381b
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline failed
gitleaks / gitleaks (push) Failing after 3s
test hadolint
2024-08-27 21:22:40 +02:00

13 lines
333 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="${CURL_VERSION}" \
wget="${WGET_VERSION}"
RUN apt update