mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 21:24:20 +01:00
* 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
14 lines
148 B
Docker
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" ]
|