Added Dockerfile

This commit is contained in:
Swapnil 2024-01-17 20:33:29 +05:30
parent 5a5f737ff4
commit d2428983bb
Signed by untrusted user: swapnil
GPG Key ID: 58029C48BB100574
1 changed files with 11 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.8-slim-buster
WORKDIR /app
ADD . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 80
CMD ["python", "main.py"]