2015-10-09 15:41:43 +00:00
|
|
|
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 \
|
2015-10-07 17:52:35 +00:00
|
|
|
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 \
|
2015-08-21 00:21:41 +00:00
|
|
|
&& 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/
|
|
|
|
|
2016-04-18 17:13:23 +00:00
|
|
|
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
|
|
|
|
|
2015-08-11 16:02:44 +00:00
|
|
|
RUN chmod +x /app/bin/gosuper
|
2015-07-23 17:00:37 +00:00
|
|
|
|
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"]
|