You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/Dockerfile

13 lines
237 B
Docker

FROM golang:1.14
4 years ago
RUN mkdir /app
WORKDIR /app
ARG VERSION
4 years ago
ADD . /app/
RUN go build -ldflags=-s -ldflags=-w -ldflags=-X=github.com/miguelmota/cointop/cointop.version=$VERSION -o main .
4 years ago
RUN mv main /bin/cointop
ENTRYPOINT cointop
CMD []