Skip to content
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
12 changes: 11 additions & 1 deletion .devcontainer/dodona-tested.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ENV PATH $HASKELL_DIR/cabal:$PATH
ENV NODE_PATH /usr/lib/node_modules

# Install dependencies
# hadolint ignore=DL3013,DL3016
RUN <<EOF
# Update apt-get
apt-get update
Expand Down Expand Up @@ -105,9 +106,18 @@ RUN <<EOF
# Java specific dependencies
apt-get install -y --no-install-recommends checkstyle

# Clean up apt caches
# Exercise dependencies
pip install --no-cache-dir --upgrade \
numpy==2.3.5 \
pandas==3.0.1 \
openpyxl==3.1.5

# Clean up caches
apt-get clean
rm -rf /var/lib/apt/lists/*
rm -rf /root/.cache
rm -rf /root/.npm
rm -rf /usr/local/sdkman/tmp

# Setup permissions and user
chmod 711 /mnt
Expand Down
Loading