summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrench Ben <frenchben@docker.com>2017-09-18 16:30:32 -0700
committerJoffrey F <f.joffrey@gmail.com>2017-10-17 17:20:00 -0700
commit53928a17c0d36c3e1a9b835febdb8e88797196b7 (patch)
treed52c8018c89caec427b632f0a8da0dcd1ea7b065
parent1da5b54d75024bbe5ceae9a296200681caaa77fd (diff)
Simple patch to allow s390x images to be built
Needs integration with CI and s390x machine integration Signed-off-by: French Ben <frenchben@docker.com>
-rw-r--r--Dockerfile.s390x6
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile.s390x b/Dockerfile.s390x
new file mode 100644
index 00000000..aa71e27b
--- /dev/null
+++ b/Dockerfile.s390x
@@ -0,0 +1,6 @@
+FROM s390x/python:3.6.2-slim
+ARG COMPOSE_VERSION=1.16.1
+
+RUN pip install --no-cache-dir docker-compose==$COMPOSE_VERSION
+
+ENTRYPOINT ["docker-compose"]