mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
41 lines
982 B
Docker
41 lines
982 B
Docker
FROM resin/armhf-alpine-node:0.10.44-slim
|
|
|
|
# Supervisor apt dependencies
|
|
RUN apk add --update \
|
|
btrfs-progs \
|
|
ca-certificates \
|
|
rsync \
|
|
supervisor \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
# Copy supervisord configuration files
|
|
COPY config/supervisor/ /etc/supervisor/
|
|
|
|
# Install dependencies
|
|
WORKDIR /app
|
|
COPY package.json postinstall.sh /app/
|
|
RUN set -x \
|
|
&& buildDeps='g++ sqlite-dev sqlite-libs make' \
|
|
&& apk add --update $buildDeps \
|
|
&& JOBS=MAX npm install --unsafe-perm --production --no-optional --build-from-source \
|
|
&& npm dedupe \
|
|
&& npm cache clean \
|
|
&& rm -rf /tmp/* \
|
|
&& apk del $buildDeps \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
# Copy source
|
|
COPY . /app/
|
|
|
|
RUN /app/node_modules/.bin/coffee -c /app/src \
|
|
&& ln -sf /app/entry.alpine.sh /start # Needed for legacy
|
|
|
|
RUN chmod +x /app/bin/gosuper
|
|
|
|
ENV SUPERVISOR_IMAGE resin/rpi-supervisor
|
|
ENV SUPERVISOR_TAG_EXTRA alpine
|
|
ENV CONFIG_MOUNT_POINT /boot/config.json
|
|
ENV LED_FILE /dev/null
|
|
|
|
ENTRYPOINT ["/app/entry.alpine.sh"]
|