Dataset / Dockerfile
vansh9878's picture
readme fixed
175f1a6
raw
history blame contribute delete
184 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
ENV FLASK_APP=app.py
CMD ["flask", "run", "--host=0.0.0.0", "--port=7860"]