9 lines
123 B
Docker
9 lines
123 B
Docker
|
FROM gcc:latest
|
||
|
|
||
|
COPY ./build.sh /tmp/
|
||
|
|
||
|
RUN bash /tmp/build.sh
|
||
|
|
||
|
# Expose /home as workin dir
|
||
|
WORKDIR /home
|
||
|
VOLUME ["/home"]
|