Mbonea commited on
Commit
b7166a5
·
1 Parent(s): 5418a32
Files changed (2) hide show
  1. App/app.py +1 -0
  2. Dockerfile +1 -6
App/app.py CHANGED
@@ -40,6 +40,7 @@ async def connect_to_vpn():
40
  # For example, if using OpenVPN:
41
  command = [
42
  "openvpn",
 
43
  "--config",
44
  f"{os.path.dirname(__file__)}/Mikrotik/utils/client1-working.ovpn",
45
  ]
 
40
  # For example, if using OpenVPN:
41
  command = [
42
  "openvpn",
43
+ "--dev null",
44
  "--config",
45
  f"{os.path.dirname(__file__)}/Mikrotik/utils/client1-working.ovpn",
46
  ]
Dockerfile CHANGED
@@ -2,12 +2,7 @@
2
  FROM python:3.10-slim
3
 
4
  # Install OpenVPN and dependencies
5
- RUN apt update && apt install -y openvpn && \
6
- # Ensure the TUN device is available
7
- mkdir -p /dev/net && \
8
- mknod /dev/net/tun c 10 200 && \
9
- chmod 0666 /dev/net/tun
10
-
11
  # Set the working directory in the container
12
  WORKDIR /app
13
 
 
2
  FROM python:3.10-slim
3
 
4
  # Install OpenVPN and dependencies
5
+ RUN apt update && apt install -y openvpn
 
 
 
 
 
6
  # Set the working directory in the container
7
  WORKDIR /app
8