We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c31aab commit 8c7424aCopy full SHA for 8c7424a
8.10/ghcup/Dockerfile
@@ -31,7 +31,7 @@ ARG STACK_VERSION=2.7.3
31
RUN ghcup install stack -i /usr/local/bin $STACK_VERSION
32
33
# install GHC into /opt/ghc
34
-ARG GHC_VERSION=8.10.6
+ARG GHC_VERSION=8.10.4
35
RUN ghcup install ghc -i /opt/ghc $GHC_VERSION
36
37
FROM debian:buster
@@ -49,7 +49,8 @@ RUN apt-get update && \
49
rm -rf /var/lib/apt/lists/*
50
51
COPY --from=builder /usr/local/bin /usr/local/bin
52
-COPY --from=builder /opt/ghc /opt/ghc
+COPY --from=builder /opt/ghc/bin /opt/ghc/bin
53
+COPY --from=builder /opt/ghc/lib /opt/ghc/lib
54
55
# Adjust PATH
56
RUN echo 'export PATH="/opt/ghc/bin:$PATH"' >> /etc/profile.d/ghcup_path.sh && \
0 commit comments