Skip to content

Commit 0722fea

Browse files
committed
Add docker image
1 parent aeacca7 commit 0722fea

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

release/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM alpine
2+
3+
RUN apk --no-cache add --virtual .gocrond-deps \
4+
ca-certificates \
5+
wget \
6+
&& GOREPLACE_VERSION=1.0.1 \
7+
&& wget -O /usr/local/bin/go-replace https://github.com/webdevops/go-replace/releases/download/$GOREPLACE_VERSION/gr-64-linux \
8+
&& chmod +x /usr/local/bin/go-replace \
9+
&& apk del .gocrond-deps
10+
11+
CMD ["go-replace"]

0 commit comments

Comments
 (0)