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

Update dodona-tested dockerfile to match pr #553 #338

Merged
merged 1 commit into from
Nov 26, 2024
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
14 changes: 9 additions & 5 deletions dodona-tested.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
ENV NODE_PATH /usr/lib/node_modules

# Install dependencies
RUN <<EOF

Check warning on line 27 in dodona-tested.dockerfile

View workflow job for this annotation

GitHub Actions / tested

Pin versions in npm. Instead of `npm install <package>` use `npm install <package>@<version>`
# Update apt-get
apt-get update

Expand Down Expand Up @@ -68,6 +68,15 @@
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

# Haskell dependencies
apt-get install -y --no-install-recommends \
hlint \
Expand All @@ -81,11 +90,6 @@
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 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
Loading