Alpine 3.13

This commit is contained in:
J0WI 2021-01-22 19:10:24 +01:00
parent 077141ee37
commit d36dfa5681
1 changed files with 4 additions and 5 deletions

View File

@ -1,13 +1,13 @@
FROM alpine:3.12
FROM alpine:3.13
# ensure www-data user exists
RUN set -x \
&& addgroup -g 82 -S www-data \
&& adduser -u 82 -D -S -G www-data www-data
# 82 is the standard uid/gid for "www-data" in Alpine
# https://git.alpinelinux.org/cgit/aports/tree/main/apache2/apache2.pre-install?h=v3.12.0
# https://git.alpinelinux.org/cgit/aports/tree/main/lighttpd/lighttpd.pre-install?h=v3.12.0
# https://git.alpinelinux.org/cgit/aports/tree/main/nginx/nginx.pre-install?h=v3.12.0
# https://git.alpinelinux.org/cgit/aports/tree/main/apache2/apache2.pre-install?h=v3.13.0
# https://git.alpinelinux.org/cgit/aports/tree/main/lighttpd/lighttpd.pre-install?h=v3.13.0
# https://git.alpinelinux.org/cgit/aports/tree/main/nginx/nginx.pre-install?h=v3.13.0
ENV HTTPD_PREFIX /usr/local/apache2
ENV PATH $HTTPD_PREFIX/bin:$PATH
@ -27,7 +27,6 @@ RUN set -eux; \
runDeps=' \
apr \
apr-util \
apr-util-dbm_db \
apr-util-ldap \
perl \
'; \