fix(dokerfile): added missing &&
Some checks failed
build dev image / build-dev (push) Failing after 50s

This commit is contained in:
sujiba 2024-07-23 00:02:30 +02:00
parent 837c11f553
commit e5d737f350

View file

@ -12,7 +12,7 @@ WORKDIR /var/www/html
RUN apt-get update -y && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
apt-get install -y --no-install-recommends && \
libxml2-dev && \
docker-php-ext-install soap && \
apt-get clean -y