-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #338 from dodona-edu/update-dodona-tested-553
Update dodona-tested dockerfile to match pr #553
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,6 +68,15 @@ 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 [email protected] [email protected] | ||
|
||
# TypeScript dependencies | ||
npm install -g [email protected] [email protected] | ||
npm install -g @types/node @typescript-eslint/parser @typescript-eslint/eslint-plugin | ||
|
||
# Haskell dependencies | ||
apt-get install -y --no-install-recommends \ | ||
hlint \ | ||
|
@@ -81,11 +90,6 @@ RUN <<EOF | |
cabal update | ||
cabal v1-install --global aeson | ||
|
||
# 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 [email protected] [email protected] | ||
|
||
# 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 | ||
|