File size: 733 Bytes
2d4d526 8cf1f74 05e392c 8cf1f74 27c82e9 6c07eac f6ed37a b5a5d67 05e392c f19dbd4 05e392c 2d4d526 407008f 05e392c 8cf1f74 f6ed37a d7d6958 05e392c d7d6958 71a4daf 05e392c d7d6958 05e392c f6ed37a 59ebb86 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN apt-get update && apt-get upgrade -y && apt-get install gcc -y
# Requirements for Pygco
RUN apt-get update && apt-get install libgl1 -y
RUN pip install --no-cache-dir -r /code/requirements.txt
RUN pip install numpy
RUN pip install cython==0.29.21
RUN apt-get update
RUN apt-get install --reinstall build-essential -y
RUN pip install pygco==0.0.16
# Make user
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
# Finish deployment and run Streamlit app
CMD ["streamlit", "run", "ⓘ_Introduction.py", "--server.port=7860", "--server.address=0.0.0.0"]
|