Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion examples/laravel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
libmagickwand-dev \
libghc-postgresql-libpq-dev \
libbz2-dev \
libfontconfig && rm -rf /var/lib/apt/lists/*
libfontconfig \
&& apt-get -y autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# PHP Extensions needed for Laravel
RUN docker-php-ext-install calendar zip intl pdo_mysql bcmath opcache pdo
Expand Down
5 changes: 4 additions & 1 deletion examples/yii2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
libmagickwand-dev \
libghc-postgresql-libpq-dev \
libbz2-dev \
libfontconfig && rm -rf /var/lib/apt/lists/*
libfontconfig \
&& apt-get -y autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# PHP Extensions needed for yii2
RUN docker-php-ext-install calendar zip mcrypt intl mbstring pdo_mysql bcmath opcache pdo pdo_pgsql
Expand Down