From 67971015bbf3bf9e158962ac5d7227b5ac2fe3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Ho=CC=88chst?= Date: Sat, 29 Sep 2018 10:09:35 +0200 Subject: [PATCH] added docker-compose compile option --- Tools/Dockerfile | 6 ++++++ docker-compose.yml | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 docker-compose.yml diff --git a/Tools/Dockerfile b/Tools/Dockerfile index d65a4e50..72d87407 100644 --- a/Tools/Dockerfile +++ b/Tools/Dockerfile @@ -1,4 +1,7 @@ FROM ubuntu:bionic +LABEL maintainer="pfadfinder@jonashoechst.de" +LABEL description="A docker image for build the Pfadiralala IV VCP Kurhessen (german scouts) songbook." +LABEL version="1.0" ENV DEBIAN_FRONTEND noninteractive @@ -14,3 +17,6 @@ RUN apt-get update \ ghostscript \ make \ && apt-get clean + +RUN mkdir /PfadiralalaIV +WORKDIR /PfadiralalaIV \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..273c13f3 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +version: '3' +services: + latex: + build: Tools/ + volumes: + - .:/PfadiralalaIV + command: "make" \ No newline at end of file