added docker prodbuild and dev env

This commit is contained in:
2024-12-20 06:14:46 +05:00
parent 3ecf2e8dce
commit b45767d74c
4 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM python:3.12.7-slim-bookworm
WORKDIR /var/www/html
COPY requirements.txt /tmp
RUN pip install -r /tmp/requirements.txt
CMD python proxy.py