OpenDroneMap-NodeODM/Dockerfile

19 wiersze
472 B
Docker
Czysty Zwykły widok Historia

FROM opendronemap/odm:latest
2017-04-08 04:09:05 +00:00
MAINTAINER Piero Toffanin <pt@masseranolabs.com>
EXPOSE 3000
USER root
2018-12-03 21:49:27 +00:00
RUN curl --silent --location https://deb.nodesource.com/setup_10.x | bash -
2019-06-08 18:13:17 +00:00
RUN apt-get install -y nodejs python-gdal && npm install -g nodemon && \
ln -s /code/SuperBuild/install/bin/entwine /usr/bin/entwine
2017-04-08 04:09:05 +00:00
RUN mkdir /var/www
WORKDIR "/var/www"
COPY . /var/www
2019-06-08 18:13:17 +00:00
RUN npm install && mkdir tmp
2017-04-08 04:09:05 +00:00
ENTRYPOINT ["/usr/bin/nodejs", "/var/www/index.js"]