We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98444d1 commit c6590cbCopy full SHA for c6590cb
stacks/base/Dockerfile
@@ -35,5 +35,11 @@ RUN adduser --shell /bin/bash --gecos 'codebox workspace user' --disabled-passwo
35
# That is clean of temporary folders and node_moudles
36
ADD ./src /opt/codebox
37
38
+# Install node modules
39
+RUN cd /opt/codebox; npm install
40
+
41
+# Build client
42
+RUN cd /opt/codebox; node_modules/.bin/hr.js -d client build
43
44
# Default init command
45
CMD su codebox /opt/codebox/init.sh
0 commit comments