13 lines
173 B
Docker
13 lines
173 B
Docker
|
FROM debian:jessie
|
||
|
|
||
|
RUN apt-get update &&\
|
||
|
apt-get install jq
|
||
|
|
||
|
ADD build.sh /root/build.sh
|
||
|
RUN chmod +x /root/build.sh
|
||
|
|
||
|
VOLUME /project
|
||
|
VOLUME /dist
|
||
|
|
||
|
CMD /root/build.sh
|