You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
400 B
19 lines
400 B
FROM debian:buster
|
|
|
|
RUN apt update
|
|
RUN apt install -y supervisor
|
|
RUN apt install -y isc-dhcp-server
|
|
RUN apt install -y tftpd-hpa
|
|
RUN apt install -y busybox
|
|
|
|
# Supervisor
|
|
COPY supervisor.conf /supervisor.conf
|
|
|
|
# DHCP server
|
|
RUN mkdir -p /var/lib/dhcp && touch /var/lib/dhcp/dhcpd.leases
|
|
COPY dhcpd.conf /etc/dhcp/dhcpd.conf
|
|
|
|
COPY run.sh /run.sh
|
|
RUN chmod +x /run.sh
|
|
ENV INTERFACE=eth0
|
|
CMD ["/run.sh"]
|
|
|