Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
O
odoo_docker
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Déploiement
Registre de conteneurs
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse du dépôt
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté GitLab
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
Le Filament
odoo_docker
Validations
a2543e7c
Valider
a2543e7c
rédigé
Il y a 6 ans
par
remi-filament
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Move postgresql-client packages later in file
parent
b23e4c62
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Chargement en cours
Modifications
2
Afficher les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
10.0.Dockerfile
+4
-3
4 ajouts, 3 suppressions
10.0.Dockerfile
12.0.Dockerfile
+4
-3
4 ajouts, 3 suppressions
12.0.Dockerfile
avec
8 ajouts
et
6 suppressions
10.0.Dockerfile
+
4
−
3
Voir le fichier @
a2543e7c
...
@@ -9,8 +9,6 @@ ENV APT_DEPS='python-dev build-essential libxml2-dev libxslt1-dev libjpeg-dev li
...
@@ -9,8 +9,6 @@ ENV APT_DEPS='python-dev build-essential libxml2-dev libxslt1-dev libjpeg-dev li
PGDATABASE=odoo
PGDATABASE=odoo
RUN
set
-x
;
\
RUN
set
-x
;
\
echo
'deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main'
>>
/etc/apt/sources.list.d/postgresql.list
&&
\
curl
-SL
https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
&&
\
apt-get update
&&
\
apt-get update
&&
\
apt-get
install
-y
--no-install-recommends
\
apt-get
install
-y
--no-install-recommends
\
ca-certificates
\
ca-certificates
\
...
@@ -26,7 +24,6 @@ RUN set -x; \
...
@@ -26,7 +24,6 @@ RUN set -x; \
libxrender1 \
libxrender1 \
libxslt1.1 \
libxslt1.1 \
node-less \
node-less \
postgresql-client \
python-gevent \
python-gevent \
python-ldap \
python-ldap \
python-qrcode \
python-qrcode \
...
@@ -38,9 +35,13 @@ RUN set -x; \
...
@@ -38,9 +35,13 @@ RUN set -x; \
xfonts-75dpi \
xfonts-75dpi \
xfonts-base \
xfonts-base \
&& \
&& \
echo 'deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main' >> /etc/apt/sources.list.d/postgresql.list &&\
curl -SL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - &&\
curl -o wkhtmltox.deb -SL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.jessie_amd64.deb &&\
curl -o wkhtmltox.deb -SL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.jessie_amd64.deb &&\
echo '4d104ff338dc2d2083457b3b1e9baab8ddf14202 wkhtmltox.deb' | sha1sum -c - &&\
echo '4d104ff338dc2d2083457b3b1e9baab8ddf14202 wkhtmltox.deb' | sha1sum -c - &&\
apt-get update &&\
apt-get install -y --no-install-recommends ./wkhtmltox.deb &&\
apt-get install -y --no-install-recommends ./wkhtmltox.deb &&\
apt-get install -y --no-install-recommends postgresql-client &&\
apt-get install -y --no-install-recommends ${APT_DEPS} &&\
apt-get install -y --no-install-recommends ${APT_DEPS} &&\
curl https://bootstrap.pypa.io/get-pip.py | python /dev/stdin &&\
curl https://bootstrap.pypa.io/get-pip.py | python /dev/stdin &&\
pip install -I -r https://raw.githubusercontent.com/OCA/OCB/10.0/requirements.txt &&\
pip install -I -r https://raw.githubusercontent.com/OCA/OCB/10.0/requirements.txt &&\
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
12.0.Dockerfile
+
4
−
3
Voir le fichier @
a2543e7c
...
@@ -7,8 +7,6 @@ ENV APT_DEPS='build-essential libldap2-dev libsasl2-dev python3-dev python3-whee
...
@@ -7,8 +7,6 @@ ENV APT_DEPS='build-essential libldap2-dev libsasl2-dev python3-dev python3-whee
PGDATABASE=odoo
PGDATABASE=odoo
RUN
set
-x
;
\
RUN
set
-x
;
\
echo
'deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main'
>>
/etc/apt/sources.list.d/postgresql.list
&&
\
curl
-SL
https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
&&
\
apt-get update
&&
\
apt-get update
&&
\
apt-get
install
-y
--no-install-recommends
\
apt-get
install
-y
--no-install-recommends
\
ca-certificates
\
ca-certificates
\
...
@@ -21,7 +19,6 @@ RUN set -x; \
...
@@ -21,7 +19,6 @@ RUN set -x; \
libxext6
\
libxext6
\
libxrender1
\
libxrender1
\
node-less
\
node-less
\
postgresql-client
\
python3-pip
\
python3-pip
\
python3-pyldap
\
python3-pyldap
\
python3-qrcode
\
python3-qrcode
\
...
@@ -33,9 +30,13 @@ RUN set -x; \
...
@@ -33,9 +30,13 @@ RUN set -x; \
xfonts-base
\
xfonts-base
\
xz-utils
\
xz-utils
\
&&
\
&&
\
echo
'deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main'
>>
/etc/apt/sources.list.d/postgresql.list
&&
\
curl
-SL
https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
&&
\
curl
-o
wkhtmltox.deb
-SL
https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb
&&
\
curl
-o
wkhtmltox.deb
-SL
https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb
&&
\
echo
'7e35a63f9db14f93ec7feeb0fce76b30c08f2057 wkhtmltox.deb'
|
sha1sum
-c
-
&&
\
echo
'7e35a63f9db14f93ec7feeb0fce76b30c08f2057 wkhtmltox.deb'
|
sha1sum
-c
-
&&
\
apt-get update
&&
\
apt-get
install
-y
--no-install-recommends
./wkhtmltox.deb
&&
\
apt-get
install
-y
--no-install-recommends
./wkhtmltox.deb
&&
\
apt-get
install
-y
--no-install-recommends
postgresql-client
&&
\
apt-get
install
-y
--no-install-recommends
${
APT_DEPS
}
&&
\
apt-get
install
-y
--no-install-recommends
${
APT_DEPS
}
&&
\
curl https://bootstrap.pypa.io/get-pip.py | python3 /dev/stdin
&&
\
curl https://bootstrap.pypa.io/get-pip.py | python3 /dev/stdin
&&
\
pip
install
-I
-r
https://raw.githubusercontent.com/OCA/OCB/12.0/requirements.txt
&&
\
pip
install
-I
-r
https://raw.githubusercontent.com/OCA/OCB/12.0/requirements.txt
&&
\
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter