Skip to content

Commit 2b1ea05

Browse files
escape ++
Signed-off-by: Arnav Gupta <arnav@codingblocks.com>
1 parent 70d3adf commit 2b1ea05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_workers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DIR=$(cd -)
55
for i in $(ls "$DIR/containers")
66
do
77
cd $DIR/containers/$i
8-
#docker image rm codingblocks/judge-worker-$i
8+
docker image rm codingblocks/judge-worker-$i
99
docker build -t codingblocks/judge-worker-$i .
1010
cd $DIR
1111
done

containers/cpp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.6
22

3-
RUN "apk add --no-cache g++=6.3.0-r4 musl-dev bash"
3+
RUN apk add --no-cache g\+\+ musl-dev bash
44
COPY ./compile.sh /bin/compile.sh
55
COPY ./run.sh /bin/run.sh
66
RUN chmod 777 /bin/compile.sh; \

0 commit comments

Comments
 (0)