Blame view

Dockerfile 1.06 KB
5357999a   Alexis Koralewski   add Dockerfile
1
2
3
FROM python:3.6.9

RUN apt-get update && apt-get install -y \
b183b691   akoralewski   add git on pyros ...
4
    default-mysql-client \
50cbd417   Alexis Koralewski   add nano and vi t...
5
6
7
    git \
    nano \
    vim
b183b691   akoralewski   add git on pyros ...
8
9
10
11

# 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

5357999a   Alexis Koralewski   add Dockerfile
12
RUN pip install --upgrade pip
5357999a   Alexis Koralewski   add Dockerfile
13
14
15
16
17
18
19
20
21
22
23
24

# adding new user (pyros_user) and creating his home folder
RUN useradd --create-home --shell /bin/bash pyros_user

# 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

# copy local host machine files to image
699871e9   Alexis Koralewski   adding bin to pat...
25
26
27
28
29
30
31
32
33
34
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