1
0
Fork 0

refactor(Dockerfile): squash layers (apt related)

This commit is contained in:
Vojtěch Mareš 2023-01-16 16:30:15 +01:00
parent 98d73f01bf
commit 7ecb1de169
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D

View file

@ -8,9 +8,8 @@ RUN apt update && apt -y install \
curl curl
# Add Ondrej Sury's PPA for PHP # Add Ondrej Sury's PPA for PHP
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php \
&& apt update
RUN apt update
# Install PHP 8.1 # Install PHP 8.1
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt -y install \ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt -y install \