CoolFace
Apppublic

csvaldellon/chat_bot

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1# Use an official Python runtime as a base image2FROM python:3.8-slim3 4# Set the working directory in the container5WORKDIR /app6 7# Copy the requirements file into the container8COPY requirements.txt .9 10# Install any needed dependencies specified in requirements.txt11RUN pip install --no-cache-dir -r requirements.txt12 13# Copy the current directory contents into the container at /app14COPY . /app15 16CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]17