Spaces:
Runtime error
Runtime error
File size: 364 Bytes
1e89e38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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"] |