I am trying to use Wercker to eventually convert libreoffice files to pdf stored in a private Github repo. There are some Docker images on Dockerhub that contain libreoffice such as xcgd/libreoffice which has this dockerfile.
I am new to both Docker and Wercker, so I decided to set up a minimal Wercker.yml to start from (below):
box: xcgd/libreoffice:latest
build:
steps:
- script:
name: test python
code: echo 123
deploy:
steps:
- script:
name: my deploy script
code: echo 123
The Wercker build stalls at the "setup environment" step with the last line being
Status: Downloaded newer image for xcgd/libreoffice:latest
And the build eventually times out with
"Command timed out after no response" after 12min 49s.
What am I doing wrong here?
Grateful for answers!