We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e818d11 commit a734e8cCopy full SHA for a734e8c
1 file changed
Dockerfile
@@ -115,6 +115,17 @@ COPY tools/sreformat /usr/local/bin/
115
#
116
ADD cxgn /home/production/cxgn
117
118
+# add npm
119
+RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
120
+RUN apt install nodejs -y
121
+RUN cd /home/production/cxgn/sgn/js; npm install
122
+
123
+#then a few steps to clean up permissions
124
+RUN rm -rf /home/production/.npm
125
+RUN chown -R production /home/production/cxgn/sgn/js/node_modules
126
+RUN chown production /home/production/cxgn/sgn/js/package-lock.json
127
128
129
# move this here so it is not clobbered by the cxgn move
130
131
COPY slurm.conf /etc/slurm/slurm.conf
0 commit comments