Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump haskell from 9.6.3 to 9.8.1 #302

Merged
merged 3 commits into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions dodona-haskell.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM haskell:9.6.3
FROM haskell:9.8.1

# hadolint ignore=DL3008
RUN apt-get update \
# Install jq for json querying in bash
# Install freeglut headers for gloss compilation
&& apt-get install -y --no-install-recommends \
jq=1.5+dfsg-2+b1 \
freeglut3-dev=2.8.1-3 \
jq \
freeglut3-dev \
&& rm -rf /var/lib/apt/lists/* \
# Make sure the students can't find our secret path, which is mounted in
# /mnt with a secure random name.
Expand All @@ -23,12 +24,12 @@ RUN cabal update \
HUnit-1.6.2.0 \
MissingH-1.6.0.1 \
QuickCheck-2.14.3 \
ghc-lib-parser-9.6.2.20230523 \
ghc-lib-parser-ex-9.6.0.2 \
ghc-lib-parser-9.8.1.20231121 \
ghc-lib-parser-ex-9.8.0.0 \
gloss-1.13.2.2 \
hlint-3.6.1 \
splitmix-0.1.0.4 \
stm-2.5.1.0 \
hlint-3.8 \
splitmix-0.1.0.5 \
stm-2.5.2.1 \
# Create the working directory
&& mkdir workdir

Expand Down
Loading