I am working on a use case which depends on the availability of phusion/baseimage for Power (ppc64le). The image builds successfully using the "docker build" command - no changes to the Dockerfile were required.
The following steps from the travis.yml succeed:
docker build -t ${NAME}:${VERSION} --rm image
env NAME=${NAME} VERSION=${VERSION} ./test/runner.sh
So, I believe, that all that will be needed from the perspective of building the image would be to enable support for Power in the travis,yml file by adding
linux-ppc64le in the os: section
Example:
https://github.com/fluent/fluentd-docker-image/blob/master/.travis.yml#L5
Would it be possible for the Power image to be then made available on DockerHub? Looking forward to suggestions, inputs and support on this .. thank you!!
I am working on a use case which depends on the availability of phusion/baseimage for Power (ppc64le). The image builds successfully using the "docker build" command - no changes to the Dockerfile were required.
The following steps from the travis.yml succeed:
docker build -t ${NAME}:${VERSION} --rm image
env NAME=${NAME} VERSION=${VERSION} ./test/runner.sh
So, I believe, that all that will be needed from the perspective of building the image would be to enable support for Power in the travis,yml file by adding
linux-ppc64le in the os: section
Example:
https://github.com/fluent/fluentd-docker-image/blob/master/.travis.yml#L5
Would it be possible for the Power image to be then made available on DockerHub? Looking forward to suggestions, inputs and support on this .. thank you!!