Chatbot_3 / Dockerfile
Praveen0309's picture
App_1
c4736af
raw
history blame
195 Bytes
FROM python:3.10
WORKDIR /app
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 7860
COPY . .
CMD ["flask", "run"]