File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ RUN apt-get -y update && apt-get install -y git && apt-get install -y vim && apt
66
77ENV API_KEY api_key
88
9+ RUN mkdir /nodejs-dev
910COPY runAll.sh /nodejs-dev/runAll.sh
1011RUN chmod 755 /nodejs-dev/runAll.sh
1112
Original file line number Diff line number Diff line change @@ -7,8 +7,11 @@ RUN apt-get -y update && apt-get install -y git && apt-get install -y vim && apt
77ENV API_KEY api_key
88
99# set the working directory
10- WORKDIR /source/examples
10+ RUN mkdir /nodejs-dev
11+ WORKDIR /nodejs-dev
12+ COPY runAll.sh /nodejs-dev/runAll.sh
1113
1214CMD chmod 0755 ./runAll.sh && ./runAll.sh $API_KEY $FILENAME $ALT_URL
1315
1416VOLUME ["/source" ]
17+
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ cp -r -n /source/. .
9494if [ ! -z ${API_KEY} ]; then
9595 checkAPI
9696 # Prerequisite
97- cd .. /examples
97+ cd ./examples
9898 npm install argparse
9999 npm install temporary
100100 npm install multipart-stream
You can’t perform that action at this time.
0 commit comments