File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,13 @@ RUN useradd -m -s /bin/bash -G users nibabies
126
126
WORKDIR /home/nibabies
127
127
ENV HOME="/home/nibabies"
128
128
129
+ # Install node + npm packages
130
+ RUN curl -sSL https://deb.nodesource.com/setup_14.x | bash - && \
131
+ apt-get install -y --no-install-recommends \
132
+ nodejs && \
133
+ npm install -g svgo
[email protected] && \
134
+ apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.npm ~/.empty
135
+
129
136
# Installing and setting up miniconda
130
137
RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh && \
131
138
bash Miniconda3-4.5.11-Linux-x86_64.sh -b -p /usr/local/miniconda && \
@@ -143,11 +150,10 @@ RUN conda install -y python=3.7.1 \
143
150
numpy=1.20 \
144
151
scipy=1.6 \
145
152
scikit-learn=0.19 \
146
- matplotlib=2.2.2 \
147
- pandas=0.23.4 \
148
- libxml2=2.9.8 \
149
- libxslt=1.1.32 \
150
- graphviz=2.40.1 \
153
+ matplotlib=2.2 \
154
+ libxml2=2.9 \
155
+ libxslt=1.1 \
156
+ graphviz=2.40 \
151
157
traits=4.6.0 \
152
158
pip=19.1 \
153
159
zlib; sync && \
You can’t perform that action at this time.
0 commit comments