Skip to content

Commit

Permalink
Potential fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
BrentBlanckaert committed Nov 21, 2024
1 parent a3897fd commit 487f9ae
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .devcontainer/dodona-tested.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@ RUN <<EOF
xxd \
shellcheck



# JavaScript dependencies
bash -c 'set -o pipefail && curl -fsSL https://deb.nodesource.com/setup_22.x | bash -'
apt-get install -y --no-install-recommends nodejs
npm install -g eslint@8.57 abstract-syntax-tree@2.22

# TypeScript dependencies
npm install -g typescript@5.6.3 tsx@4.19.2
npm install -g @types/node @typescript-eslint/parser @typescript-eslint/eslint-plugin --save-dev

# Haskell dependencies
apt-get install -y --no-install-recommends \
hlint \
Expand All @@ -78,15 +89,6 @@ RUN <<EOF
cabal update
cabal v1-install --global aeson

# TypeScript dependencies
npm install -g typescript@5.6.3 tsx@4.19.2
npm install -g @types/node @typescript-eslint/parser @typescript-eslint/eslint-plugin --save-dev

# JavaScript dependencies
bash -c 'set -o pipefail && curl -fsSL https://deb.nodesource.com/setup_22.x | bash -'
apt-get install -y --no-install-recommends nodejs
npm install -g eslint@8.57 abstract-syntax-tree@2.22

# C# dependencies
curl https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb --output packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
Expand Down

0 comments on commit 487f9ae

Please sign in to comment.