adds escapes

This commit is contained in:
Hyatt 2022-03-25 07:09:16 -05:00
parent 74f1122002
commit caa5fe89ef
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -9,11 +9,11 @@ LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
COPY test-chamber-13.lan.root.crt /usr/local/share/ca-certificates/test-chamber-13.lan.root.crt
RUN apt-get update &&
apt-get upgrade -y &&
apt-get autoremove -y &&
apt-get clean &&
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* &&
RUN apt-get update && \\
apt-get upgrade -y && \\
apt-get autoremove -y && \\
apt-get clean && \\
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* && \\
docker-php-ext-install mysqli
"""