From 4bc9d9dbafc9e66294977952d9662223dd99f95f Mon Sep 17 00:00:00 2001 From: French Ben Date: Mon, 18 Sep 2017 16:30:32 -0700 Subject: [PATCH] Simple patch to allow s390x images to be built Needs integration with CI and s390x machine integration Signed-off-by: French Ben --- Dockerfile.s390x | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile.s390x diff --git a/Dockerfile.s390x b/Dockerfile.s390x new file mode 100644 index 000000000..aa71e27bc --- /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"]