Skip to content

Commit

Permalink
package purge
Browse files Browse the repository at this point in the history
  • Loading branch information
ION606 committed Sep 12, 2024
1 parent 6f9feb1 commit 3362f13
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dockerfiles/haskell/8.8.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ RUN ghcup install ghc 8.8.4 \
&& ghcup install cabal \
&& cabal update

# Clean up unnecessary packages
RUN apt-get remove -y --purge \
curl pkg-config ca-certificates libtinfo5 pkg-config\
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /usr/src/app

CMD ["/bin/bash"]

0 comments on commit 3362f13

Please sign in to comment.