We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d3adf commit 2b1ea05Copy full SHA for 2b1ea05
build_workers.sh
@@ -5,7 +5,7 @@ DIR=$(cd -)
5
for i in $(ls "$DIR/containers")
6
do
7
cd $DIR/containers/$i
8
- #docker image rm codingblocks/judge-worker-$i
+ docker image rm codingblocks/judge-worker-$i
9
docker build -t codingblocks/judge-worker-$i .
10
cd $DIR
11
done
containers/cpp/Dockerfile
@@ -1,6 +1,6 @@
1
FROM alpine:3.6
2
3
-RUN "apk add --no-cache g++=6.3.0-r4 musl-dev bash"
+RUN apk add --no-cache g\+\+ musl-dev bash
4
COPY ./compile.sh /bin/compile.sh
COPY ./run.sh /bin/run.sh
RUN chmod 777 /bin/compile.sh; \
0 commit comments