mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-21 21:57:49 +00:00
10 lines
155 B
Docker
10 lines
155 B
Docker
FROM alpine:3.3
|
|
|
|
RUN apk add --update openvswitch && rm -rf /var/cache/apk/*
|
|
|
|
VOLUME /etc/openvswitch/
|
|
|
|
ADD boot.sh /bin/boot.sh
|
|
|
|
CMD /bin/sh /bin/boot.sh
|