You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+8-9Lines changed: 8 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,10 @@
1
-
# stack resolver 18.18 uses ghc 8.10.7
2
-
FROM haskell:8.10.7 as build
1
+
# stack resolver 24.10 uses ghc 9.10.2 - when upgrading LTS version in stack.yaml, check Haskell version on https://www.stackage.org/ and check which Debian release is available on https://hub.docker.com/_/haskell/
2
+
FROM haskell:9.10.2-bullseye as build
3
3
RUN mkdir -p /tablebot/build
4
4
WORKDIR /tablebot/build
5
5
6
6
# system lib dependencies
7
-
RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && \
0 commit comments