Browse Source

cleaning apt cache

removes unneded files from docker image
pull/111/head
Mark Bumiller 2 years ago committed by GitHub
parent
commit
06b74ace27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Dockerfile

4
Dockerfile

@ -12,7 +12,9 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key
# Install Chrome.
RUN apt-get update && apt-get -y install --no-install-recommends \
google-chrome-stable \
python3-dev
python3-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Add pipenv
RUN pip install pipenv

Loading…
Cancel
Save