Skip to content

Commit

Permalink
Add a Dockfile with everything needed for a self contained build.
Browse files Browse the repository at this point in the history
  • Loading branch information
gorzell committed Mar 26, 2019
1 parent 6d10f4a commit d469b8e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM golang:1.12

RUN apt-get update &&\
apt-get install -y --no-install-recommends unzip python-dev python-pip && \
pip install virtualenv

WORKDIR /go/src/github.com/twitchtv/twirp
COPY . .

ENTRYPOINT ["make"]

0 comments on commit d469b8e

Please sign in to comment.