Spaces:
Runtime error
Runtime error
FROM python:3.10 | |
LABEL authors="dxarpanjain" | |
# Install dependencies | |
RUN pip install --upgrade pip | |
RUN #pip install -r requirements.txt | |
# Copy the current directory contents into the container at /app | |
COPY . /app | |
# Set the working directory to /app | |
WORKDIR /app | |
# Run app.py when the container launches | |
RUN conda activate chat_exp | |
CMD ["python3", "app_chat.py"] |