mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
dockerfiles: Fix entrypoints to be absolute paths
* Absolute entrypoints are expected for docker2aci
This commit is contained in:
@@ -2,4 +2,4 @@ FROM alpine:latest
|
||||
MAINTAINER Dalton Hubble <dalton.hubble@coreos.com>
|
||||
COPY bin/bootcfg /bootcfg
|
||||
EXPOSE 8080
|
||||
ENTRYPOINT ["./bootcfg"]
|
||||
ENTRYPOINT ["/bootcfg"]
|
||||
|
||||
@@ -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"]
|
||||
Reference in New Issue
Block a user