From baf35c6ccc702649dcd7cbf7217091d499b8d7c7 Mon Sep 17 00:00:00 2001 From: Lukian Date: Tue, 10 Dec 2024 14:10:59 +0100 Subject: [PATCH] Fixed libpcap --- server/proxy-server/Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/server/proxy-server/Dockerfile b/server/proxy-server/Dockerfile index 7490563..d4392d2 100644 --- a/server/proxy-server/Dockerfile +++ b/server/proxy-server/Dockerfile @@ -1,7 +1,13 @@ FROM python:alpine WORKDIR /app COPY . . -RUN apk add libpcap bash && pip install -r requirements.txt +RUN apk add \ + gcc \ + libpcap-dev \ + musl-dev \ + libffi-dev \ + openssl-dev \ + && pip install -r requirements.txt EXPOSE 80 CMD ["python", "-u", "main.py"]