Files
addons/dhcp_server/Dockerfile
Franck Nijhof 8440f9c548 dhcp_server: Refactor (#590)
* dhcp_server: Rewrite add-on onto Bashio

* dhcp_server: Format config.json

* dhcp_server: Adds README to add-on repository

* dhcp_server: Version bump to 1.1, updated CHANGELOG
2019-06-01 23:15:52 +02:00

14 lines
148 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache dhcp
# Copy data
COPY run.sh /
CMD [ "/run.sh" ]