new changes

This commit is contained in:
n4ze3m
2023-04-10 20:43:00 +05:30
parent 6a204ceb28
commit 2c66e38698
10 changed files with 7 additions and 7 deletions

15
py_server/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.9.16
WORKDIR /app
RUN apt-get update && apt-get install -y wget unzip libgconf-2-4 libnss3 libcurl4
RUN pip install --no-cache-dir -U pip
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "main.py"]