0.5 / Dockerfile
abdullahalioo's picture
Create Dockerfile
f7e85c1 verified
raw
history blame
172 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY chatbot_app.py .
EXPOSE 7860
CMD ["python", "app.py"]