2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-05 00:00:14 +00:00
cointop/Dockerfile

13 lines
237 B
Docker
Raw Normal View History

2020-08-03 02:52:24 +00:00
FROM golang:1.14
2020-05-25 21:32:44 +00:00
RUN mkdir /app
WORKDIR /app
2020-08-05 16:13:18 +00:00
ARG VERSION
2020-05-25 21:32:44 +00:00
ADD . /app/
2020-08-05 16:13:18 +00:00
RUN go build -ldflags=-s -ldflags=-w -ldflags=-X=github.com/miguelmota/cointop/cointop.version=$VERSION -o main .
2020-05-25 21:32:44 +00:00
RUN mv main /bin/cointop
2020-08-03 02:52:24 +00:00
ENTRYPOINT cointop
CMD []