Spaces:
Runtime error
Runtime error
File size: 406 Bytes
542422c 53bbad7 542422c 53bbad7 7be9227 542422c 53bbad7 19374f2 542422c 19374f2 c316eb3 af6f81b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM python:3.9
WORKDIR /code
# Add user with UID 1000 and give it full permissions
RUN useradd -m -u 1000 user && chown -R user /code
USER user
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
EXPOSE 8501
CMD streamlit run app.py |