mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 14:13:08 +00:00
16 lines
279 B
Docker
16 lines
279 B
Docker
FROM dockerfile/nodejs
|
|
|
|
ADD . /app
|
|
|
|
WORKDIR /app
|
|
|
|
ENV SUPERVISOR_IMAGE resin/x86-supervisor
|
|
ENV CONFIG_MOUNT_POINT /boot/config.json
|
|
ENV LED_FILE /dev/null
|
|
|
|
RUN rm -rf node_modules
|
|
RUN npm install --unsafe-perm --production
|
|
|
|
RUN ln -sf /app/entry.sh /start
|
|
CMD ["/app/entry.sh"]
|