mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2025-01-12 20:00:17 +01:00
added dockerignore, moved dockerfile to root
This commit is contained in:
parent
b8b494f697
commit
b6304569ad
3 changed files with 19 additions and 1 deletions
17
.dockerignore
Normal file
17
.dockerignore
Normal file
|
@ -0,0 +1,17 @@
|
|||
build/
|
||||
pkg/
|
||||
dist/
|
||||
src/
|
||||
bin/
|
||||
*.pyc
|
||||
*.egg-info/
|
||||
|
||||
.tmp
|
||||
.vagrant
|
||||
|
||||
bower_components/
|
||||
node_modules/
|
||||
|
||||
transfersh-server/run.sh
|
||||
.elasticbeanstalk/
|
||||
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@ bower_components/
|
|||
node_modules/
|
||||
|
||||
transfersh-server/run.sh
|
||||
.elasticbeanstalk/
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir -p /go/src/app
|
|||
WORKDIR /go/src/app
|
||||
|
||||
# Copy the local package files to the container's workspace.
|
||||
ADD . /go/src/app
|
||||
ADD ./transfersh-server /go/src/app
|
||||
|
||||
# install dependencies
|
||||
RUN go get ./
|
Loading…
Reference in a new issue