changeset 849230d94ed2 in tryton-docker-tryton-test:default
details:
https://hg.tryton.org/tryton-docker-tryton-test?cmd=changeset;node=849230d94ed2
description:
Initial commit
issue8905
review282501004
diffstat:
3.5/Dockerfile | 7 +++++++
3.6/Dockerfile | 7 +++++++
3.7/Dockerfile | 7 +++++++
update.sh | 9 +++++++++
4 files changed, 30 insertions(+), 0 deletions(-)
diffs (46 lines):
diff -r 000000000000 -r 849230d94ed2 3.5/Dockerfile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/3.5/Dockerfile Wed Dec 18 21:46:54 2019 +0100
@@ -0,0 +1,7 @@
+FROM python:3.5
+
+RUN apt-get update \
+ && apt-get install -y --no-install-recommends \
+ libgirepository1.0-dev \
+ gir1.2-gtk-3.0 \
+ python3-gi-cairo
diff -r 000000000000 -r 849230d94ed2 3.6/Dockerfile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/3.6/Dockerfile Wed Dec 18 21:46:54 2019 +0100
@@ -0,0 +1,7 @@
+FROM python:3.6
+
+RUN apt-get update \
+ && apt-get install -y --no-install-recommends \
+ libgirepository1.0-dev \
+ gir1.2-gtk-3.0 \
+ python3-gi-cairo
diff -r 000000000000 -r 849230d94ed2 3.7/Dockerfile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/3.7/Dockerfile Wed Dec 18 21:46:54 2019 +0100
@@ -0,0 +1,7 @@
+FROM python:3.7
+
+RUN apt-get update \
+ && apt-get install -y --no-install-recommends \
+ libgirepository1.0-dev \
+ gir1.2-gtk-3.0 \
+ python3-gi-cairo
diff -r 000000000000 -r 849230d94ed2 update.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/update.sh Wed Dec 18 21:46:54 2019 +0100
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+docker build -q --rm --no-cache -t tryton/tryton-test:3.5 3.5
+docker build -q --rm --no-cache -t tryton/tryton-test:3.6 3.6
+docker build -q --rm --no-cache -t tryton/tryton-test:3.7 3.7
+
+docker push tryton/tryton-test:3.5
+docker push tryton/tryton-test:3.6
+docker push tryton/tryton-test:3.7