Skip to content

Commit a20de88

Browse files
authored
Merge pull request #72 from liangminhua/master
Add DockerfIle #51
2 parents 2b69d89 + 5e1d469 commit a20de88

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)