2015-10-09 15:41:43 +00:00
FROM resin/i386-node:0.10.40-slim
2014-09-22 12:45:15 +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-05-04 11:53:03 +00:00
&& apt-get install -qqy \
btrfs-tools \
2015-11-02 23:33:32 +00:00
ca-certificates \
curl \
2015-05-04 11:53:03 +00:00
jq \
rsync \
socat \
supervisor \
2015-11-02 23:33:32 +00:00
xz-utils \
2015-05-04 11:53:03 +00:00
--no-install-recommends \
2015-01-27 13:04:34 +00:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/
2014-09-22 12:45:15 +00:00
2015-11-02 23:33:32 +00:00
ENV DOCKER_VERSION 1.6.2
RUN curl -sL https://github.com/resin-io/docker/releases/download/${ DOCKER_VERSION } /docker-386-${ DOCKER_VERSION } .tar.xz | tar xJv --strip-components= 1 -C /usr/bin
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-01-27 13:04:34 +00:00
# Install dependencies
2014-09-22 12:45:15 +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-08-21 00:21:41 +00:00
&& JOBS = MAX npm install --unsafe-perm --production --no-optional \
2015-03-05 15:54:58 +00:00
&& npm dedupe \
2015-02-20 13:37:53 +00:00
&& npm cache clean \
2015-05-07 15:27:27 +00:00
&& rm -rf /tmp/* \
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-09-22 12:45:15 +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 \
2015-05-04 00:20:31 +00:00
&& ln -sf /mnt/root/var/lib/rce /var/lib/docker \
2015-03-06 17:30:49 +00:00
&& ln -sf /app/entry.sh /start # Needed for legacy
2015-03-01 22:26:32 +00:00
2015-08-11 16:02:44 +00:00
RUN chmod +x /app/bin/gosuper
2015-07-23 17:00:37 +00:00
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
2015-10-09 16:57:40 +00:00
ENTRYPOINT [ "/app/entry.sh" ]