fix(dokerfile): no install recommends
All checks were successful
build dev image / build-dev (push) Successful in 6m27s
All checks were successful
build dev image / build-dev (push) Successful in 6m27s
This commit is contained in:
parent
e5d737f350
commit
fb9cdc217a
1 changed files with 4 additions and 3 deletions
|
@ -10,12 +10,13 @@ RUN apk update && \
|
||||||
FROM php:8.3.9-apache
|
FROM php:8.3.9-apache
|
||||||
WORKDIR /var/www/html
|
WORKDIR /var/www/html
|
||||||
|
|
||||||
RUN apt-get update -y && \
|
RUN apt-get update && \
|
||||||
apt-get upgrade -y && \
|
apt-get upgrade -y && \
|
||||||
apt-get install -y --no-install-recommends && \
|
apt-get install --no-install-recommends -y \
|
||||||
libxml2-dev && \
|
libxml2-dev && \
|
||||||
docker-php-ext-install soap && \
|
docker-php-ext-install soap && \
|
||||||
apt-get clean -y
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY --chown=www-data:www-data --from=0 /clone-workspace/ownDynDNS /var/www/html
|
COPY --chown=www-data:www-data --from=0 /clone-workspace/ownDynDNS /var/www/html
|
||||||
COPY --chown=www-data:www-data --from=0 /clone-workspace/ownDynDNS/.htaccess.example /var/www/html/.htaccess
|
COPY --chown=www-data:www-data --from=0 /clone-workspace/ownDynDNS/.htaccess.example /var/www/html/.htaccess
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue