httpd/Dockerfile
Michael Grote 78b7ccc0eb
Some checks failed
linter / gitleaks (push) Successful in 2s
linter / hadolint (push) Successful in 2s
linter / shellcheck (push) Failing after 3s
switch linter to gitea-actions
chore(deps): update dependency alpine_3_20/curl to v8.9.1-r0

switch hadolint to gitea-actions

fix?

test hadolint

remove test

move shellcheck

dd

cc

dd

dd

ff

ss

dd

ss

dd

ww

dddd

dd

dd

ff

dd

dd

dd
2024-08-27 21:50:28 +02:00

11 lines
317 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}"