Skip to content

Commit

Permalink
install fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed May 21, 2024
1 parent 8551b9b commit 7780843
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ RUN apt-get update -y --fix-missing \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# hadolint ignore=DL3008
RUN rm -rf /usr/lib/node_modules \
&& curl -sL https://deb.nodesource.com/setup_18.x -o /tmp/nodesource_setup.sh \
&& bash /tmp/nodesource_setup.sh \
&& apt-get -y install nodejs \
&& apt-get update -y --fix-missing \
&& apt-get -y install --no-install-recommends nodejs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& npm install -g [email protected]

RUN gem install judges:0.0.31 \

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL4001 warning: Either use Wget or Curl but not both
Expand Down

0 comments on commit 7780843

Please sign in to comment.