This commit is contained in:
Your Name
2024-12-02 02:35:49 +05:00
commit d1c12a08b0
7 changed files with 348 additions and 0 deletions

10
dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./server.py" ]