Move unneeded files to dockerignore

pull/6/head
pocketjawa 2019-07-29 21:34:23 -04:00
parent efd431e923
commit 49ba0695e0
2 changed files with 5 additions and 1 deletions

5
.dockerignore Normal file
View File

@ -0,0 +1,5 @@
.git
.drone.yml
.gitignore
.dockerignore
Dockerfile

View File

@ -3,7 +3,6 @@ FROM golang:latest
WORKDIR /go/src/buttsbot
COPY . .
RUN rm -rf .git .drone.yml .gitignore
RUN go get -d -v ./...
RUN go install -v ./...