This commit is contained in:
thakarprathamesh
2022-12-15 17:51:59 +05:30
commit bdad68430b
3 changed files with 18 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:alpine3.17
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 9999
WORKDIR /app
ENTRYPOINT ["python", "app.py"]