Commit 5137b9c93eeddffca2793818e869abd08b3a4cd2

Authored by Alexis Koralewski
1 parent f2eeeb37
Exists in dev

Removing Pylon (Basler dependencies) in dockerfile

Showing 3 changed files with 5 additions and 5 deletions   Show diff stats
CHANGELOG
... ... @@ -4,6 +4,7 @@
4 4 - Update guiastro url
5 5 - Fixing guiastro siteobs in get_sun_elev()
6 6 - Add send command to agent from website (generic commands)
  7 + - Removing Pylon (Basler dependencies) in dockerfile
7 8  
8 9 16-08-2022 (AKo): v0.5.1.0
9 10 - Adding compilation of guitastro requirements.in file into Dockerfile
... ...
Dockerfile
... ... @@ -98,7 +98,7 @@ RUN wget https://www.hnsky.org/astap_amd64.deb
98 98 RUN apt-get install -y ./astap_amd64.deb
99 99 RUN rm ./astap_amd64.deb
100 100  
101   -# - PYLON (Cameras BASLER)
  101 +# - PYLON (Cameras BASLER) Not useful anymore
102 102 # https://www.baslerweb.com/en/products/software/basler-pylon-camera-software-suite/
103 103 # (you will have to fill a form to be able to download)
104 104 # pylon_6.3.0.23157_x86_64_setup.tar.gz
... ... @@ -106,8 +106,8 @@ RUN rm ./astap_amd64.deb
106 106 # copier le fichier pylon_6.3.0.23157_x86_64.tar.gz à l’endroit où installer le logiciel.
107 107 # tar -xvf pylon_6.3.0.23157_x86_64.tar.gz
108 108 # apt-get install ./pylon_6.3.0.23157-deb0_amd64.deb
109   -COPY ./install/guitastro/pylon_6.3.0.23157-deb0_amd64.deb .
110   -RUN apt-get install ./pylon_6.3.0.23157-deb0_amd64.deb
  109 +# COPY ./install/guitastro/pylon_6.3.0.23157-deb0_amd64.deb .
  110 +# RUN apt-get install ./pylon_6.3.0.23157-deb0_amd64.deb
111 111  
112 112 RUN apt-get update && apt-get upgrade -y
113 113  
... ... @@ -143,7 +143,6 @@ RUN echo | openssl s_client -connect gitlab.irap.omp.eu:443 -servername gitlab.i
143 143 # PyROS user (better than root) #
144 144 #################################
145 145  
146   -RUN echo "$uid" > test.txt
147 146 # Adding new user (pyros_user) and creating his home folder
148 147 RUN useradd --create-home --shell /bin/bash pyros_user --uid $uid
149 148  
... ...
VERSION
1   -0.5.1.0
  1 +0.5.2.1
... ...