Explorar el Código

added dockerignore, moved dockerfile to root

tags/v1.0.0
Remco hace 9 años
padre
commit
b6304569ad
Se han modificado 3 ficheros con 19 adiciones y 1 borrados
  1. +17
    -0
      .dockerignore
  2. +1
    -0
      .gitignore
  3. +1
    -1
      Dockerfile

+ 17
- 0
.dockerignore Ver fichero

@@ -0,0 +1,17 @@
build/
pkg/
dist/
src/
bin/
*.pyc
*.egg-info/

.tmp
.vagrant

bower_components/
node_modules/

transfersh-server/run.sh
.elasticbeanstalk/


+ 1
- 0
.gitignore Ver fichero

@@ -13,3 +13,4 @@ bower_components/
node_modules/

transfersh-server/run.sh
.elasticbeanstalk/

transfersh-server/Dockerfile → Dockerfile Ver fichero

@@ -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 ./

Cargando…
Cancelar
Guardar