Fix required missing /var/run/openvswitch directory preventing ovs to boot

This commit is contained in:
cokegen 2022-07-08 16:07:09 -03:00
parent f27f33e028
commit 1b5877c0c5

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