llm-chat / Dockerfile
Darpan
Minor fixes
46b68a4
raw
history blame contribute delete
335 Bytes
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"]