mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 04:47:54 +00:00
10 lines
162 B
Docker
10 lines
162 B
Docker
FROM alpine:3.14
|
|
MAINTAINER developers@gns3.net
|
|
|
|
RUN apk add --update dnsmasq && rm -rf /var/cache/apk/*
|
|
|
|
VOLUME /etc/dnsmasq
|
|
COPY boot.sh .
|
|
|
|
CMD /bin/sh boot.sh
|