From a221323ff878d7714406020ae1906636b40c9975 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?=
 <100566912+NohamR@users.noreply.github.com>
Date: Sat, 27 Jul 2024 20:04:32 +0200
Subject: [PATCH] Create Dockerfile

---
 Dockerfile | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 Dockerfile

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..5ae763a
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,15 @@
+FROM python:3.9
+
+WORKDIR /app
+
+RUN apt-get update && \
+    apt-get install -y git && \
+    apt-get clean
+
+RUN git clone https://github.com/NohamR/trio_http_proxy.git
+
+WORKDIR /app/trio_http_proxy
+
+RUN pip install --no-cache-dir -r requirements.txt
+
+CMD ["python", "trio_http_proxy.py"]