- ansible play for cleaning hosts (apt autoremove) - mondrian(incomplete) - lock postgres to version 10 - update jenkins dockerfile
11 lines
389 B
Docker
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"]
|