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

[Feature:Autograding] Add Haskell image #45

Merged
merged 16 commits into from
Sep 13, 2024
14 changes: 14 additions & 0 deletions dockerfiles/haskell/3.0.0.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ubuntu:22.04

# Install necessary packages for GHC (compiler)
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ghc cabal-install \
ION606 marked this conversation as resolved.
Show resolved Hide resolved
&& rm -rf /var/lib/apt/lists/*

# Maybe add Stack (another build tool for Haskell), up to Instructor?
# RUN curl -sSL https://get.haskellstack.org/ | sh
cjreed121 marked this conversation as resolved.
Show resolved Hide resolved

WORKDIR /usr/src/app

CMD ["/bin/bash"]
3 changes: 3 additions & 0 deletions dockerfiles/haskell/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"pushLatest": false
}
Loading