basic server added

This commit is contained in:
n4ze3m
2023-04-09 22:55:29 +05:30
parent 6ee45e78a7
commit 012035ecbe
4 changed files with 146 additions and 0 deletions

15
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"]