Skip to content

Commit

Permalink
sass in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed May 21, 2024
1 parent 2f70ae2 commit 1314120
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,7 +32,11 @@ RUN apt-get update -y --fix-missing \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN npm install -g [email protected]
RUN rm -rf /usr/lib/node_modules \

Check failure on line 35 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`

Check failure on line 35 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3015 info: Avoid additional packages by specifying `--no-install-recommends`
&& curl -sL https://deb.nodesource.com/setup_18.x -o /tmp/nodesource_setup.sh \
&& bash /tmp/nodesource_setup.sh \
&& apt-get -y install nodejs \
&& npm install -g [email protected]

RUN gem install judges:0.0.31 \

Check failure on line 41 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL4001 warning: Either use Wget or Curl but not both
&& wget --no-verbose -O /usr/local/Saxon.jar \
Expand Down

0 comments on commit 1314120

Please sign in to comment.