File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
19
19
libmagickwand-dev \
20
20
libghc-postgresql-libpq-dev \
21
21
libbz2-dev \
22
- libfontconfig && rm -rf /var/lib/apt/lists/*
22
+ libfontconfig \
23
+ && apt-get -y autoremove \
24
+ && apt-get clean \
25
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
23
26
24
27
# PHP Extensions needed for Laravel
25
28
RUN docker-php-ext-install calendar zip intl pdo_mysql bcmath opcache pdo
Original file line number Diff line number Diff line change @@ -16,7 +16,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
16
16
libmagickwand-dev \
17
17
libghc-postgresql-libpq-dev \
18
18
libbz2-dev \
19
- libfontconfig && rm -rf /var/lib/apt/lists/*
19
+ libfontconfig \
20
+ && apt-get -y autoremove \
21
+ && apt-get clean \
22
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
20
23
21
24
# PHP Extensions needed for yii2
22
25
RUN docker-php-ext-install calendar zip mcrypt intl mbstring pdo_mysql bcmath opcache pdo pdo_pgsql
You can’t perform that action at this time.
0 commit comments