Skip to content

Commit

Permalink
Added dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Hector Maldonado committed May 21, 2018
1 parent 806f7fa commit 1219fa7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ignore .git and .cache folders
.*
*.md
LICENSE
Dockerfile

# vendor
vendor
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.10 AS builder

# Download and install the latest release of dep
ADD https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 /usr/bin/dep
RUN chmod +x /usr/bin/dep
RUN curl -Ls -o /usr/bin/dep https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 \
&& chmod +x /usr/bin/dep

# Copy the code from the host and compile it
WORKDIR $GOPATH/src/github.com/xynova/ntlm-reverse-proxy
Expand Down

0 comments on commit 1219fa7

Please sign in to comment.