1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-07-14 18:27:25 +08:00
docker-labs/Dockerfile
Jonathan Leibiusky (@xetorthio) 39f3da3a82 Add docker files
2016-11-10 15:30:40 -03:00

20 lines
494 B
Docker

FROM golang:1.7.1
# Copy the runtime dockerfile into the context as Dockerfile
COPY Dockerfile.run /go/bin/Dockerfile
COPY ./www /go/bin/www
COPY . /go/src/github.com/franela/play-with-docker
WORKDIR /go/src/github.com/franela/play-with-docker
RUN go get -v -d ./...
RUN CGO_ENABLED=0 go build -a -installsuffix nocgo -o /go/bin/play-with-docker .
# Set the workdir to be /go/bin which is where the binaries are built
WORKDIR /go/bin
# Export the WORKDIR as a tar stream
CMD tar -cf - .