DynuIPRefresher/Docker/Linux_Conan/Dockerfile

11 lines
179 B
Docker

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"]