c9b0398df0
We don't want to continue if any of the commands fails. && only executes the next command on exitocde 0.
18 lines
437 B
Docker
18 lines
437 B
Docker
FROM php:apache
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
libfreetype6-dev \
|
|
libjpeg62-turbo-dev \
|
|
libpng12-dev \
|
|
wget \
|
|
zip \
|
|
unzip && \
|
|
# We install and enable php-gd
|
|
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ &&\
|
|
docker-php-ext-install -j$(nproc) gd && \
|
|
|
|
# We enable Apache's mod_rewrite
|
|
a2enmod rewrite
|
|
|
|
COPY . .
|