add conan docker image and build docker image only if changes where made in its config

This commit is contained in:
2020-10-31 21:07:34 +01:00
parent deb54c4f3a
commit 220275a617
4 changed files with 53 additions and 7 deletions

View File

@ -0,0 +1,11 @@
FROM gcc:latest
ENV PATH=/usr/local/texlive/bin/x86_64-linuxmusl:$PATH
COPY ./build.sh /tmp/
RUN bash /tmp/build.sh
# Expose /home as workin dir
WORKDIR /home
VOLUME ["/home"]