Files
addons/dnsmasq/Dockerfile
Pascal Vizeli e939d8783c New build system (#179)
* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Update Dockerfile

* Create build.json

* Update Dockerfile

* Update Dockerfile

* Create build.json

* Update build.json
2017-09-25 00:12:26 +02:00

17 lines
201 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache jq dnsmasq
# Copy data
COPY run.sh /
COPY dnsmasq.conf /etc/
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]