We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b69d89 + 5e1d469 commit a20de88Copy full SHA for a20de88
Dockerfile
@@ -0,0 +1,14 @@
1
+FROM node:10
2
+ARG LANG=en
3
+ENV LANG=${LANG}
4
+ENV HOST=0.0.0.0
5
+USER root
6
+COPY . /js/server
7
+RUN cd js && \
8
+ npm_config_user=root npm install -g bunyan gulp@4 && \
9
+ git clone https://github.com/javascript-tutorial/engine server/modules/engine --depth=1 && \
10
+ git clone https://github.com/javascript-tutorial/$LANG.javascript.info --depth=1 && \
11
+ cd server && npm install
12
+WORKDIR /js/server
13
+EXPOSE 3000
14
+CMD ./edit $LANG $LANG
0 commit comments