Skip to content
Closed
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
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ RUN $APT_UPDATE && $APT_INSTALL \
unzip software-properties-common apt-transport-https \
openjdk-11-jdk xvfb siege apache2-utils git make nodejs locales tsung libtool libssl-dev libyaml-dev libxml2-dev libxslt-dev

# Verify Node.js and npm installation
RUN node -v && npm -v || \
($APT_UPDATE && $APT_INSTALL npm)

# Install cross-spawn globally
RUN npm uninstall -g cross-spawn && npm install -g cross-spawn@7.0.5

# Install .NET sdk
# check this page for the links and hash
# https://dotnetcli.azureedge.net/dotnet/release-metadata/8.0/releases.json
Expand Down