9 lines
123 B
Docker
Raw Normal View History

FROM gcc:latest
COPY ./build.sh /tmp/
RUN bash /tmp/build.sh
# Expose /home as workin dir
WORKDIR /home
VOLUME ["/home"]