Skip to content

Commit 9e9cd1f

Browse files
Added Golang packages
1 parent c579c9e commit 9e9cd1f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
FROM alpine:3.13
22

3-
RUN apk --update --no-cache add nodejs npm python3 py3-pip jq curl bash git docker && \
3+
RUN apk --update --no-cache add nodejs npm python3 py3-pip jq curl bash git docker go && \
44
ln -sf /usr/bin/python3 /usr/bin/python
55

6+
# Configure Go
7+
ENV GOROOT /usr/lib/go
8+
ENV GOPATH /go
9+
ENV PATH /go/bin:$PATH
10+
611
COPY entrypoint.sh /entrypoint.sh
712

813
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)