aboutsummaryrefslogtreecommitdiffstats
path: root/cointop/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'cointop/Dockerfile')
-rw-r--r--cointop/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/cointop/Dockerfile b/cointop/Dockerfile
new file mode 100644
index 0000000..1e5cc22
--- /dev/null
+++ b/cointop/Dockerfile
@@ -0,0 +1,8 @@
+FROM alpine:3.16 as builder
+RUN apk update && apk upgrade && apk add go git
+ENV GOPROXY=https://goproxy.io
+RUN git clone https://github.com/cointop-sh/cointop && cd cointop/cmd/cointop && go build
+
+FROM alpine:3.16
+COPY --from=builder /cointop/cmd/cointop/cointop /cointop/cointop
+ENTRYPOINT ["/cointop/cointop"]