Dockerfile
1.3 KB
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
34
35
36
37
38
39
40
FROM python:3.8
ARG uid
RUN apt-get update && apt-get install -y \
default-mysql-client \
git \
nano \
vim \
# for PNG diagrams generation with pyreverse (pylint)
graphviz graphviz-dev
# Get IRAP self signed certificate
RUN echo | openssl s_client -connect gitlab.irap.omp.eu:443 -servername gitlab.irap.omp.eu 2>/dev/null | openssl x509 > /etc/ssl/certs/gitlab.irap.omp.eu.crt
RUN echo "$uid" > test.txt
# adding new user (pyros_user) and creating his home folder
RUN useradd --create-home --shell /bin/bash pyros_user --uid $uid
# Create the work dir and set permissions as pyros_user
RUN mkdir -p /home/pyros_user/app/ && chown -R pyros_user:pyros_user /home/pyros_user/app
WORKDIR /home/pyros_user/app
# switch from root to pyros_user
USER pyros_user
RUN pip install --user --upgrade pip
RUN pip install --user wheel
RUN pip install --user numpy
# copy local host machine files to image
COPY --chown=pyros_user:pyros_user . .
# adding local/bin to path to avoid pip warning
ENV PATH "$PATH:/home/pyros_user/.local/bin"
# installing click on the image to prevent error on the first execution of the installation script
RUN pip install --user click
# installing packages required for PyROS
RUN pip install --user -r ./install/requirements.txt
RUN pip install --user -r ./install/requirements_dev.txt