Skip to content

Commit

Permalink
chore: clean up post install
Browse files Browse the repository at this point in the history
Generally good practice to keep container images smaller.

Signed-off-by: Mike Fiedler <[email protected]>
  • Loading branch information
miketheman authored and ewdurbin committed Aug 22, 2024
1 parent 48d4709 commit 18b3d4a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ RUN set -x \
&& apt-get update \
&& apt-get install --no-install-recommends -y \
build-essential git libcairo2-dev libfreetype6-dev \
libjpeg-dev libpng-dev libz-dev
libjpeg-dev libpng-dev libz-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN set -x \
&& python3 -m venv /opt/venv
Expand Down

0 comments on commit 18b3d4a

Please sign in to comment.