cleaning apt cache
removes unneded files from docker image
This commit is contained in:
parent
c0c18b3f6d
commit
06b74ace27
|
|
@ -12,7 +12,9 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key
|
||||||
# Install Chrome.
|
# Install Chrome.
|
||||||
RUN apt-get update && apt-get -y install --no-install-recommends \
|
RUN apt-get update && apt-get -y install --no-install-recommends \
|
||||||
google-chrome-stable \
|
google-chrome-stable \
|
||||||
python3-dev
|
python3-dev \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Add pipenv
|
# Add pipenv
|
||||||
RUN pip install pipenv
|
RUN pip install pipenv
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue