File tree 3 files changed +6
-6
lines changed
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
10
10
11
11
- They have one compile.sh file that compiles (if required) the source
12
12
- They have a run.sh file that runs the source or the binary
13
-
13
+
14
14
## Composition
15
15
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
17
17
18
18
## Supported Languages
19
19
20
- Currently we have following images -
20
+ Currently we have following images -
21
21
22
22
- [ c] ( containers/c )
23
23
- [ cpp] ( containers/cpp )
24
24
- [ c#] ( containers/csharp )
25
+ - [ golang] ( containers/golang )
25
26
- [ java8] ( containers/java8 )
26
27
- [ nodejs6] ( containers/nodejs6 )
27
28
- [ nodejs] ( containers/nodejs8 )
28
29
- [ py2] ( containers/py2 )
29
30
- [ py3] ( containers/py3 )
30
31
- [ ruby] ( containers/ruby )
31
-
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.6
2
2
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"
4
4
5
5
COPY ./compile.sh /bin/compile.sh
6
6
COPY ./run.sh /bin/run.sh
Original file line number Diff line number Diff line change 13
13
}
14
14
15
15
@test " test golang" {
16
- bash tests/csharp /test_worker.sh
16
+ bash tests/golang /test_worker.sh
17
17
}
18
18
19
19
@test " test java8" {
You can’t perform that action at this time.
0 commit comments