Spaces:
Sleeping
Sleeping
File size: 273 Bytes
55ebc59 dcf709f 55ebc59 dcf709f 55ebc59 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.11.5-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
RUN useradd -m -u 1000 user
USER user
EXPOSE 7860
#COPY --chown=user . /app/
ENTRYPOINT ["streamlit", "run", "streamlit_app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|