Yusin commited on
Commit
4582283
·
1 Parent(s): ea90641

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -36,6 +36,11 @@ RUN make
36
  COPY requirements.txt /openconnect/requirements.txt
37
  RUN python -m pip install -r /openconnect/requirements.txt
38
 
 
 
 
 
 
39
 
40
  COPY aberconnect.sh /openconnect
41
  RUN chmod +x aberconnect.sh
 
36
  COPY requirements.txt /openconnect/requirements.txt
37
  RUN python -m pip install -r /openconnect/requirements.txt
38
 
39
+ RUN mkdir -p /var/run/vpnc
40
+ RUN chmod -R 777 /var/run/vpnc
41
+
42
+ RUN mkdir -p /dev/net
43
+ RUN chmod -R 777 /dev/net
44
 
45
  COPY aberconnect.sh /openconnect
46
  RUN chmod +x aberconnect.sh