micro/examples/server/Dockerfile

6 lines
188 B
Docker
Raw Normal View History

2016-10-08 12:26:11 +03:00
# Build binary with the following command
# CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' -o server ./main.go
FROM alpine:3.2
2015-05-25 20:16:42 +03:00
ADD server /
ENTRYPOINT [ "/server" ]