2015-04-10 15:32:05 +00:00
|
|
|
FROM node:0.10.38-slim
|
2015-01-27 13:04:34 +00:00
|
|
|
|
2015-02-20 13:34:59 +00:00
|
|
|
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/
|
|
|
|
|
2015-01-27 13:04:34 +00:00
|
|
|
# Supervisor apt dependencies
|
|
|
|
RUN apt-get -q update \
|
2015-02-20 13:31:26 +00:00
|
|
|
&& apt-get install -qqy socat supervisor --no-install-recommends \
|
2015-01-27 13:04:34 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/
|
|
|
|
|
|
|
|
# Copy supervisord launch file for resin-supervisor
|
|
|
|
COPY resin-supervisor.conf /etc/supervisor/conf.d/resin-supervisor.conf
|
|
|
|
|
|
|
|
# Install dependencies
|
2014-08-05 14:18:19 +00:00
|
|
|
WORKDIR /app
|
2015-01-27 13:04:34 +00:00
|
|
|
COPY package.json postinstall.sh /app/
|
2015-02-20 13:37:53 +00:00
|
|
|
RUN apt-get -q update \
|
2015-03-05 15:54:58 +00:00
|
|
|
&& apt-get install -qqy g++ libsqlite3-dev make --no-install-recommends \
|
2015-02-20 13:37:53 +00:00
|
|
|
&& npm install --unsafe-perm --production \
|
2015-03-05 15:54:58 +00:00
|
|
|
&& npm dedupe \
|
2015-02-20 13:37:53 +00:00
|
|
|
&& npm cache clean \
|
2015-03-07 18:23:41 +00:00
|
|
|
&& apt-get purge -qqy g++ libsqlite3-dev make binutils \
|
2015-02-20 13:37:53 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& apt-get autoremove -qqy \
|
|
|
|
&& rm -rf /var/lib/apt/lists/
|
2015-01-27 13:04:34 +00:00
|
|
|
|
|
|
|
# Copy source
|
|
|
|
COPY . /app/
|
2014-08-05 14:18:19 +00:00
|
|
|
|
2015-03-06 17:30:49 +00:00
|
|
|
RUN chmod +x /app/src/enterContainer.sh \
|
|
|
|
&& /app/node_modules/.bin/coffee -c /app/src \
|
|
|
|
&& ln -sf /app/entry.sh /start # Needed for legacy
|
2015-03-01 22:26:32 +00:00
|
|
|
|
2014-09-22 12:45:15 +00:00
|
|
|
ENV SUPERVISOR_IMAGE resin/x86_64-supervisor
|
2014-08-05 14:18:19 +00:00
|
|
|
ENV CONFIG_MOUNT_POINT /boot/config.json
|
2014-08-14 21:32:03 +00:00
|
|
|
ENV LED_FILE /dev/null
|
2014-08-05 14:18:19 +00:00
|
|
|
|
|
|
|
CMD ["/app/entry.sh"]
|