Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zramsay committed Mar 19, 2019
1 parent f3009b8 commit 75e3015
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM golang:1.12

RUN apt-get update && apt-get upgrade -y && apt-get install -y pandoc texlive-xetex

ADD https://github.com/golang/dep/releases/download/v0.5.1/dep-linux-amd64 /usr/bin/dep

RUN chmod +x /usr/bin/dep

WORKDIR $GOPATH/src/github.com/CoinCulture/claw

COPY Gopkg.toml Gopkg.lock ./

RUN dep ensure --vendor-only

COPY . ./

RUN go install

0 comments on commit 75e3015

Please sign in to comment.