TestOfGradioRAGbyCodeLlama / Dockerfile.txt
Solshine's picture
Rename dockerfile.txt to Dockerfile.txt
5c23833 verified
raw
history blame contribute delete
126 Bytes
FROM python:3.8
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]