Files
matchbox/Dockerfile
Brandon Philips bbdec3fb62 build: don't force GOOS=linux
There is no reason to force this. Instead have the docker-build command
do it before it is built.

Also, use the actual package name: bootcfg. It confused me that bootcfg
was called server.
2016-01-16 14:29:25 -08:00

6 lines
134 B
Docker

FROM alpine:latest
MAINTAINER Dalton Hubble <dalton.hubble@coreos.com>
COPY bin/bootcfg /bootcfg
EXPOSE 8080
ENTRYPOINT ["./bootcfg"]