docker-dhcpd/Dockerfile
quackerd 68f56acef1
All checks were successful
continuous-integration/drone/push Build is passing
Update 'Dockerfile'
2022-08-08 08:36:27 +00:00

8 lines
179 B
Docker

FROM alpine:latest
COPY ./run.sh /opt/run.sh
RUN set -xe \
&& apk add --no-cache dhcp \
&& chmod +x /opt/run.sh
VOLUME ["/etc/dhcp", "/var/lib/dhcp"]
CMD ["/opt/run.sh"]