docker-dhcpd/Dockerfile
quackerd 863811a046
All checks were successful
continuous-integration/drone/push Build is passing
Update 'Dockerfile'
2022-06-19 22:44:53 +00:00

10 lines
194 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"]
EXPOSE 67/tcp