agentLLM / Dockerfile
ibyteohdear's picture
Upload 4 files
0c3fc5f verified
raw
history blame contribute delete
181 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]