Merge pull request #39 from coreos/fix-entrypoint

dockerfiles: Fix entrypoints to be absolute paths
This commit is contained in:
Dalton Hubble
2016-01-25 00:11:34 -05:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -5,4 +5,4 @@ RUN mkdir -p /var/lib/tftpboot
RUN curl -s -o /var/lib/tftpboot/undionly.kpxe http://boot.ipxe.org/undionly.kpxe
RUN ln -s /var/lib/tftpboot/undionly.kpxe /var/lib/tftpboot/undionly.kpxe.0
EXPOSE 53
ENTRYPOINT ["dnsmasq", "-d"]
ENTRYPOINT ["/usr/sbin/dnsmasq", "-d"]