2015-01-27 13:04:34 +00:00
|
|
|
FROM node:0.10.36-slim
|
|
|
|
|
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/
|
|
|
|
|
|
|
|
# Compile time dependencies
|
|
|
|
RUN apt-get -q update \
|
2015-02-20 13:31:26 +00:00
|
|
|
&& apt-get install -qqy g++ git libsqlite3-dev make ssh-client --no-install-recommends \
|
2015-01-27 13:04:34 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/
|
|
|
|
|
|
|
|
# Deploy key for private npm modules
|
|
|
|
RUN mkdir -p /root/.ssh
|
|
|
|
COPY deploy_key /root/.ssh/id_rsa
|
|
|
|
COPY ssh_config /root/.ssh/config
|
|
|
|
RUN chmod 400 /root/.ssh/*
|
|
|
|
|
|
|
|
# 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/
|
|
|
|
RUN npm install --unsafe-perm --production \
|
|
|
|
&& npm cache clean
|
|
|
|
|
|
|
|
# Copy source
|
|
|
|
COPY . /app/
|
2014-08-05 14:18:19 +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"]
|