mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-22 14:12:28 +00:00
10 lines
161 B
Docker
10 lines
161 B
Docker
|
FROM alpine:3.3
|
||
|
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
|