We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ac3b0 commit 6813921Copy full SHA for 6813921
.tools/Dockerfile
@@ -4,6 +4,11 @@ ENV DEBIAN_FRONTEND noninteractive
4
ENV DEBIAN_PRIORITY critical
5
6
RUN apt-get -q --no-allow-insecure-repositories update \
7
+ ## I hate the `curl ... | bash -` pattern with a passion, but it
8
+ ## doesn't have to be secure here.
9
+ && DEBIAN_FRONTEND=noninteractive \
10
+ apt-get install --assume-yes --no-install-recommends curl \
11
+ && curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
12
&& DEBIAN_FRONTEND=noninteractive \
13
apt-get install --assume-yes --no-install-recommends \
14
aspell \
@@ -20,7 +25,6 @@ RUN apt-get -q --no-allow-insecure-repositories update \
20
25
luarocks \
21
26
make \
22
27
nodejs \
23
- npm \
24
28
python-is-python3 \
29
python3 \
30
python3-matplotlib \
0 commit comments