mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
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.
6 lines
134 B
Docker
6 lines
134 B
Docker
FROM alpine:latest
|
|
MAINTAINER Dalton Hubble <dalton.hubble@coreos.com>
|
|
COPY bin/bootcfg /bootcfg
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["./bootcfg"]
|