Spaces:
Runtime error
Runtime error
File size: 335 Bytes
1e89e38 46b68a4 1e89e38 46b68a4 1e89e38 46b68a4 |
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
RUN cd /app
# Run app.py when the container launches
CMD ["python3", "app_chat.py"]
|