-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (21 loc) · 731 Bytes
/
Copy pathDockerfile
File metadata and controls
30 lines (21 loc) · 731 Bytes
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
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"]