mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 04:47:54 +00:00
12 lines
172 B
Docker
12 lines
172 B
Docker
FROM alpine:edge
|
|
|
|
|
|
RUN apk update && apk add openvswitch=2.8.0-r0 && rm -rf /var/cache/apk/*
|
|
|
|
VOLUME /etc/openvswitch/
|
|
|
|
|
|
ADD boot.sh /bin/boot.sh
|
|
|
|
CMD /bin/sh /bin/boot.sh
|