prompting-dashboard / Dockerfile
bkb2135
Don't Use Cache
90ceb20
raw
history blame contribute delete
146 Bytes
FROM python:3.10-bookworm
COPY . /app
WORKDIR /app
EXPOSE 10000
RUN pip install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "app.py"]