balena-supervisor/Dockerfile.i386

23 lines
487 B
Docker
Raw Normal View History

2014-09-22 14:45:15 +02:00
FROM resin/i386-ubuntu:14.04
# Install.
2015-01-02 18:34:42 +01:00
RUN apt-get update && apt-get install -y curl git unzip wget npm nodejs inetutils-ping openvpn libsqlite3-dev socat supervisor
RUN ln -sf /usr/bin/nodejs /usr/bin/node
2014-09-22 14:45:15 +02:00
ADD . /app
WORKDIR /app
ENV SUPERVISOR_IMAGE resin/i386-supervisor
ENV CONFIG_MOUNT_POINT /boot/config.json
ENV LED_FILE /dev/null
RUN rm -rf node_modules
RUN npm install --unsafe-perm --production
RUN ln -sf /app/entry.sh /start
RUN apt-get clean
CMD ["/app/entry.sh"]