Merge pull request #671 from cokegen/master

Fix required missing /var/run/openvswitch directory preventing ovs to…
This commit is contained in:
Jeremy Grossmann 2022-07-08 21:36:10 +02:00 committed by GitHub
commit 294f219837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,8 @@ 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