GtkSharp/Dockerfile
Chris Lapa 88bef66dfa ci: dockerizes CI to get newer version of gtk (3.22.*) from Debian 9 image.
Signed-off-by: Chris Lapa <chris@lapa.com.au>
2017-10-06 08:03:18 -03:00

15 lines
291 B
Docker

FROM debian:9
RUN apt-get update && \
apt-get install -y git python3 python3-pip ninja-build mono-devel libgtk-3-dev
RUN pip3 install git+https://github.com/mesonbuild/meson/
ENV SOURCE_DIR="/source"
RUN mkdir -p "${SOURCE_DIR}"
COPY / "${SOURCE_DIR}"
CMD ["/source/.ci_build.sh"]