Skip to content

Commit 774790d

Browse files
vibhorgupta-ghchampionswimmer
authored andcommitted
Improvements (#22)
1 parent 08fc5c6 commit 774790d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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-

containers/golang/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 bash go="1.8.4-r0"
3+
RUN apk add --no-cache musl-dev bash go="1.8.4-r0"
44

55
COPY ./compile.sh /bin/compile.sh
66
COPY ./run.sh /bin/run.sh

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
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" {

0 commit comments

Comments
 (0)