Skip to content

Commit 400e728

Browse files
committed
Use no install recommends
1 parent d53c58d commit 400e728

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

Dockerfile

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ ARG PYTHON_VERSION
22
FROM python:${PYTHON_VERSION}-slim
33

44
RUN apt-get update \
5-
&& apt-get install -y libmemcached-dev \
6-
build-essential \
7-
libsqlite3-mod-spatialite binutils libproj-dev gdal-bin libgdal20 libgeoip1 \
8-
default-libmysqlclient-dev \
9-
unzip libaio1 \
10-
libenchant1c2a \
11-
gettext \
12-
wget \
5+
&& apt-get install --no-install-recommends -y \
6+
libmemcached-dev \
7+
build-essential \
8+
libsqlite3-mod-spatialite binutils libproj-dev gdal-bin libgdal20 libgeoip1 \
9+
default-libmysqlclient-dev \
10+
unzip libaio1 \
11+
libenchant1c2a \
12+
gettext \
13+
wget \
1314
&& apt-get clean
1415

1516
RUN groupadd -r test && useradd --no-log-init -r -g test test

0 commit comments

Comments
 (0)