File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ FROM alpine:3.17
6
6
# - random haskell libraries with cbits (basement): binutils-gold
7
7
# - to use embedded binaries in development (ie themis): libc6-compat
8
8
# - for nix installation via github action cachix/install-nix-action: sudo
9
- RUN apk --no-cache add binutils-gold curl gcc g++ git gmp-dev ncurses-dev ncurses-static libffi-dev make xz tar perl zlib-dev zlib-static bash sudo libc6-compat git-lfs
9
+ RUN apk --no-cache add binutils-gold curl gcc g++ git gmp-dev ncurses-dev ncurses-static libffi-dev make xz xz-static tar perl zlib-dev zlib-static bash sudo libc6-compat git-lfs
10
10
11
11
# Install system deps for FOSSA CLI:
12
12
RUN apk --no-cache add bash xz-libs xz-dev bzip2-dev bzip2-static upx curl jq
@@ -16,7 +16,8 @@ ENV BOOTSTRAP_HASKELL_MINIMAL=1
16
16
ENV PATH="/root/.cabal/bin:/root/.ghcup/bin:$PATH"
17
17
RUN curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh
18
18
19
- RUN ghcup install ghc 9.8.2
19
+ # Delete the documentation, we don't really need it.
20
+ RUN ghcup install ghc 9.8.2 && rm -rf "$HOME/.ghcup/share/doc/*"
20
21
21
22
RUN ghcup set ghc 9.8.2
22
23
RUN ghcup install cabal 3.10.3.0
You can’t perform that action at this time.
0 commit comments