mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
13 lines
229 B
Docker
13 lines
229 B
Docker
FROM golang:latest
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN go get github.com/Sirupsen/logrus
|
|
RUN go get github.com/coreos/go-etcd/etcd
|
|
|
|
ADD ./main.go /src/main.go
|
|
|
|
WORKDIR /src
|
|
RUN go build -o firewall main.go
|
|
|
|
RUN ls
|