dnsmasq/Dockerfile

17 lines
378 B
Docker
Raw Permalink Normal View History

2023-04-13 12:45:03 +00:00
ARG VERSION
FROM registry.opensuse.org/opensuse/tumbleweed:${VERSION}
VOLUME /config
RUN zypper --non-interactive install --no-recommends \
dnsmasq \
&& zypper clean -a \
rm /var/log/zypper.log
2023-04-20 11:24:16 +00:00
ENV TZ="Europe/Stockholm"
2023-04-13 12:45:03 +00:00
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["start"]