Skip to content

Commit 1a4c381

Browse files
verbose copy and update node to 8.11
Signed-off-by: Arnav Gupta <arnav@codingblocks.com>
1 parent 81bfc87 commit 1a4c381

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

containers/nodejs8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM alpine:3.7
1+
FROM alpine:3.8
22

3-
RUN apk add --no-cache nodejs=8.9.3-r0 bash
3+
RUN apk add --no-cache nodejs=8.11.3-r1 bash
44
COPY ./compile.sh /bin/compile.sh
55
COPY ./run.sh /bin/run.sh
66
RUN chmod 777 /bin/compile.sh; \

tests/c/test_worker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ echo $RUNBOX
88
mkdir -p $RUNBOX
99

1010
# Copy source to runbox
11-
cp $DIR/source.c $RUNBOX/source.c
12-
cp $DIR/run.stdin $RUNBOX/run.stdin
11+
cp -fv $DIR/source.c $RUNBOX/source.c
12+
cp -fv $DIR/run.stdin $RUNBOX/run.stdin
1313

1414
# Test Compile
1515
docker run \

tests/cpp/test_worker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ echo $RUNBOX
88
mkdir -p $RUNBOX
99

1010
# Copy source to runbox
11-
cp $DIR/source.cpp $RUNBOX/source.cpp
12-
cp $DIR/run.stdin $RUNBOX/run.stdin
11+
cp -fv $DIR/source.cpp $RUNBOX/source.cpp
12+
cp -fv $DIR/run.stdin $RUNBOX/run.stdin
1313

1414
# Test Compile
1515
docker run \

tests/java8/test_worker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ echo $RUNBOX
88
mkdir -p $RUNBOX
99

1010
# Copy source to runbox
11-
cp $DIR/Main.java $RUNBOX/Main.java
12-
cp $DIR/run.stdin $RUNBOX/run.stdin
11+
cp -fv $DIR/Main.java $RUNBOX/Main.java
12+
cp -fv $DIR/run.stdin $RUNBOX/run.stdin
1313

1414
# Test Compile
1515
docker run \

tests/nodejs6/test_worker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ rm -rf $RUNBOX
1111
mkdir -p $RUNBOX
1212

1313
# Copy source to runbox
14-
cp $DIR/script.js $RUNBOX/script.js
15-
cp $DIR/run.stdin $RUNBOX/run.stdin
14+
cp -fv $DIR/script.js $RUNBOX/script.js
15+
cp -fv $DIR/run.stdin $RUNBOX/run.stdin
1616

1717
# Test Compile
1818
docker run \

tests/py2/test_worker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ rm -rf $RUNBOX
1111
mkdir -p $RUNBOX
1212

1313
# Copy source to runbox
14-
cp $DIR/script.py $RUNBOX/script.py
15-
cp $DIR/run.stdin $RUNBOX/run.stdin
14+
cp -fv $DIR/script.py $RUNBOX/script.py
15+
cp -fv $DIR/run.stdin $RUNBOX/run.stdin
1616

1717
# Test Compile
1818
docker run \

tests/py3/test_worker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ rm -rf $RUNBOX
1111
mkdir -p $RUNBOX
1212

1313
# Copy source to runbox
14-
cp $DIR/script.py $RUNBOX/script.py
15-
cp $DIR/run.stdin $RUNBOX/run.stdin
14+
cp -fv $DIR/script.py $RUNBOX/script.py
15+
cp -fv $DIR/run.stdin $RUNBOX/run.stdin
1616

1717
# Test Compile
1818
docker run \

0 commit comments

Comments
 (0)