X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=docker%2Fdockerfile;fp=docker%2Fdockerfile;h=d6167cfd3cdd63217948be4827b7af13cbdf656c;hb=b2e864ae0f55f8006d88f7f73c118fcc596a6942;hp=0000000000000000000000000000000000000000;hpb=ccf1632cd3b36b4faa2c05ab458e6b15fddd7c33;p=psensor.git diff --git a/docker/dockerfile b/docker/dockerfile new file mode 100644 index 0000000..d6167cf --- /dev/null +++ b/docker/dockerfile @@ -0,0 +1,22 @@ +FROM resin/rpi-raspbian + +RUN apt-get update +RUN apt-get install git +RUN apt-get install make +RUN apt-get install gcc +RUN apt-get install libc6-dev +RUN apt-get install pkg-config +RUN apt-get install libgtk-3-dev +RUN apt-get install automake + +RUN apt-get install autopoint +RUN apt-get install intltool +RUN apt-get install intltool-debian + +RUN apt-get install help2man + +RUN cd /root && git clone https://git.wpitchoune.net/psensor.git -b master + +COPY psensor_build.sh /root + +CMD /root/psensor_build.sh