Chaurasia, Vijay
added README.md Dockerfile app.py requirements.txt
f50dd2b
raw
history blame contribute delete
170 Bytes
FROM python:3.10
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN rm requirements.txt
COPY app.py .
EXPOSE 8001
CMD ["python", "app.py"]