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
4 changes: 3 additions & 1 deletion dodona-tested.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
# Set up the environment

# Kotlin
ENV SDKMAN_DIR /usr/local/sdkman

Check warning on line 16 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PATH $SDKMAN_DIR/candidates/kotlin/current/bin:$PATH

Check warning on line 17 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PATH $SDKMAN_DIR/candidates/java/current/bin:$PATH

Check warning on line 18 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
# Haskell
ENV HASKELL_DIR /usr/local/ghcupdir

Check warning on line 20 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PATH $HASKELL_DIR/ghc/bin:$PATH

Check warning on line 21 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PATH $HASKELL_DIR/cabal:$PATH

Check warning on line 22 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
# Node
ENV NODE_PATH /usr/lib/node_modules

Check warning on line 24 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Install dependencies
# hadolint ignore=DL3013,DL3016
Expand Down Expand Up @@ -111,7 +111,9 @@

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

# Clean up caches
apt-get clean
Expand Down
Loading