File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,22 @@ Workers are docker containers that run the code. They have simple requirements
1010
1111 - They have one compile.sh file that compiles (if required) the source
1212 - They have a run.sh file that runs the source or the binary
13-
13+
1414## Composition
1515
16- All workers are built on top of [ alpine linux] ( https://alpinelinux.org/ ) 3.6
16+ All workers are built on top of [ alpine linux] ( https://alpinelinux.org/ ) 3.6
1717
1818## Supported Languages
1919
20- Currently we have following images -
20+ Currently we have following images -
2121
2222 - [ c] ( containers/c )
2323 - [ cpp] ( containers/cpp )
2424 - [ c#] ( containers/csharp )
25+ - [ golang] ( containers/golang )
2526 - [ java8] ( containers/java8 )
2627 - [ nodejs6] ( containers/nodejs6 )
2728 - [ nodejs] ( containers/nodejs8 )
2829 - [ py2] ( containers/py2 )
2930 - [ py3] ( containers/py3 )
3031 - [ ruby] ( containers/ruby )
31-
Original file line number Diff line number Diff line change 11FROM alpine:3.6
22
3- RUN apk add --no-cache bash go="1.8.4-r0"
3+ RUN apk add --no-cache musl-dev bash go="1.8.4-r0"
44
55COPY ./compile.sh /bin/compile.sh
66COPY ./run.sh /bin/run.sh
Original file line number Diff line number Diff line change 1313}
1414
1515@test " test golang" {
16- bash tests/csharp /test_worker.sh
16+ bash tests/golang /test_worker.sh
1717}
1818
1919@test " test java8" {
You can’t perform that action at this time.
0 commit comments