mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
25 lines
455 B
Docker
25 lines
455 B
Docker
FROM resin/i386-ubuntu:14.04
|
|
|
|
# Install.
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install -y curl git unzip wget npm nodejs inetutils-ping
|
|
RUN ln -sf /usr/bin/nodejs /usr/bin/node
|
|
|
|
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"]
|