balena-supervisor/Dockerfile.i386

42 lines
1.1 KiB
Docker
Raw Normal View History

2015-04-10 15:32:05 +00:00
FROM resin/i386-node:0.10.38-slim
2014-09-22 12:45:15 +00:00
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/
# Supervisor apt dependencies
RUN apt-get -q update \
&& apt-get install -qqy socat supervisor --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/
2014-09-22 12:45:15 +00:00
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/
# Install dependencies
2014-09-22 12:45:15 +00:00
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-07-15 21:25:35 +00:00
&& JOBS=MAX npm install --unsafe-perm --production \
&& npm dedupe \
&& npm cache clean \
2015-05-07 15:27:27 +00:00
&& rm -rf /tmp/* \
&& 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/
2014-09-22 12:45:15 +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
RUN chmod +x /app/bin/gosuper
2014-09-22 12:45:15 +00:00
ENV SUPERVISOR_IMAGE resin/i386-supervisor
ENV CONFIG_MOUNT_POINT /boot/config.json
ENV LED_FILE /dev/null
CMD ["/app/entry.sh"]