mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-20 21:33:09 +00:00
12 lines
195 B
Docker
12 lines
195 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --update openvswitch nano && rm -rf /var/cache/apk/*
|
|
|
|
RUN mkdir /var/run/openvswitch
|
|
|
|
VOLUME /etc/openvswitch/
|
|
|
|
ADD boot.sh /bin/boot.sh
|
|
|
|
CMD /bin/sh /bin/boot.sh
|