@@ -0,0 +1,8 @@
+from python3.10-slim
+
+RUN pip install --no-cache-dir --upgrade pip \
+ && pip install --no-cache-dir -r requests
+COPY main.py
+CMD ["python3","./lab2.py"]
+EXPOSE 8000