Added a hot new Dockerfile

pull/5/head
pocketjawa 2019-07-28 22:58:19 -04:00
parent e834a7ae53
commit bffd7335c5
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM golang:latest
WORKDIR /go/src/buttsbot
COPY . .
RUN rm -rf .git .drone.yml .gitignore
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["buttsbot"]