balena-supervisor/Dockerfile.x86_64

40 lines
1012 B
Docker
Raw Normal View History

FROM node:0.10.36-slim
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/
# Compile time dependencies
RUN apt-get -q update \
&& apt-get install -qqy g++ git libsqlite3-dev make ssh-client --no-install-recommends \
&& 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
WORKDIR /app
COPY package.json postinstall.sh /app/
RUN npm install --unsafe-perm --production \
&& npm cache clean
# Copy source
COPY . /app/
2014-09-22 12:45:15 +00:00
ENV SUPERVISOR_IMAGE resin/x86_64-supervisor
ENV CONFIG_MOUNT_POINT /boot/config.json
ENV LED_FILE /dev/null
CMD ["/app/entry.sh"]