feat: don't need to apt install

This commit is contained in:
Supan Adit Pratama 2022-04-13 07:04:47 +07:00
parent 14bfb8a6ba
commit 49c9b09276

View File

@ -3,21 +3,21 @@ FROM php:7.4-apache
RUN apt-get update RUN apt-get update
# 1. development packages # 1. development packages
RUN apt-get install -y \ #RUN apt-get install -y \
git \ # git \
zip \ # zip \
curl \ # curl \
sudo \ # sudo \
unzip \ # unzip \
libicu-dev \ # libicu-dev \
libzip-dev \ # libzip-dev \
libbz2-dev \ # libbz2-dev \
libpng-dev \ # libpng-dev \
libjpeg-dev \ # libjpeg-dev \
libmcrypt-dev \ # libmcrypt-dev \
libreadline-dev \ # libreadline-dev \
libfreetype6-dev \ # libfreetype6-dev \
g++ # g++
# Set Apache Root # Set Apache Root
ENV APACHE_DOCUMENT_ROOT=/var/www/html/public ENV APACHE_DOCUMENT_ROOT=/var/www/html/public