Files
provisioning/dockerfiles/tasks/mondrian/Dockerfile
Richard Morgan c597fdf80d - ansible docker images
- ansible play for cleaning hosts (apt autoremove)
- mondrian(incomplete)
- lock postgres to version 10
- update jenkins dockerfile
2018-10-22 00:18:56 -04:00

11 lines
389 B
Docker

# docker build --rm -f Dockerfile -t mondrian:latest .
FROM dkregistry.xai-corp.net:5000/xaicorp/php:7.2-dev
MAINTAINER Richard Morgan <r_morgan@sympatico.ca>
RUN apt-get update && apt-get install -y wget \
&& wget https://github.com/Trismegiste/Mondrian/raw/master/bin/box/mondrian.phar \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
CMD ["mondrian.phar"]