balena-supervisor/Dockerfile.armv7hf

46 lines
1.1 KiB
Docker
Raw Normal View History

FROM resin/armv7hf-node:0.10.40-slim
2015-03-06 18:52:54 +00:00
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/
# Supervisor apt dependencies
RUN apt-get -q update \
2015-05-04 11:53:03 +00:00
&& apt-get install -qqy \
btrfs-tools \
ca-certificates \
2015-05-04 11:53:03 +00:00
rsync \
supervisor \
--no-install-recommends \
2015-03-06 18:52:54 +00:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/
2015-08-06 16:05:47 +00:00
# Copy supervisord configuration files
2015-08-06 16:12:09 +00:00
COPY config/supervisor/ /etc/supervisor/
2015-03-06 18:52:54 +00:00
# Install dependencies
WORKDIR /app
COPY package.json postinstall.sh /app/
RUN apt-get -q update \
&& apt-get install -qqy g++ libsqlite3-dev make --no-install-recommends \
&& JOBS=MAX npm install --unsafe-perm --production --no-optional \
2015-03-06 18:52:54 +00:00
&& npm dedupe \
&& npm cache clean \
2015-05-07 15:27:27 +00:00
&& rm -rf /tmp/* \
2015-03-06 18:52:54 +00:00
&& apt-get purge -qqy g++ libsqlite3-dev make binutils \
&& apt-get clean \
&& apt-get autoremove -qqy \
&& rm -rf /var/lib/apt/lists/
# Copy source
COPY . /app/
RUN /app/node_modules/.bin/coffee -c /app/src \
2015-03-06 18:52:54 +00:00
&& ln -sf /app/entry.sh /start # Needed for legacy
RUN chmod +x /app/bin/gosuper
2015-03-06 18:52:54 +00:00
ENV SUPERVISOR_IMAGE resin/armv7hf-supervisor
ENV CONFIG_MOUNT_POINT /boot/config.json
ENV LED_FILE /dev/null
2015-10-09 16:57:40 +00:00
ENTRYPOINT ["/app/entry.sh"]