cleaning apt cache

removes unneded files from docker image
This commit is contained in:
Mark Bumiller 2023-01-12 10:15:48 -05:00 committed by GitHub
parent c0c18b3f6d
commit 06b74ace27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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