initial commit

This commit is contained in:
Jonas Forsberg
2023-04-13 14:45:03 +02:00
commit 0b80fb9a4a
4 changed files with 72 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
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
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["start"]