Chat-w-git-Llama2 / Dockerfile
thewise's picture
Update Dockerfile
afe93d9 verified
raw
history blame
354 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y build-essential curl git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Copy applicatio
COPY . /app
# Install dependencies
RUN pip install --upgrade pip && pip install --user -r requirements.txt
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]