mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* dnsmasq: Prettier YAML & JSON files * dnsmasq: Update add-on URL * dnsmasq: Pin add-on base images * dnsmasq: Move data files into data folder * dnsmasq: Tweaks documentation
15 lines
185 B
Docker
15 lines
185 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Add env
|
|
ENV LANG C.UTF-8
|
|
|
|
# Setup base
|
|
RUN apk add --no-cache dnsmasq
|
|
|
|
# Copy data
|
|
COPY data/run.sh /
|
|
COPY data/dnsmasq.conf /etc/
|
|
|
|
CMD [ "/run.sh" ]
|