2016-06-03 17:21:46 +00:00
|
|
|
# Minimal runtime image
|
2016-12-15 18:14:53 +00:00
|
|
|
FROM %%BASE_IMAGE_TAG%%
|
2016-06-03 17:21:46 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
2017-07-01 04:07:02 +00:00
|
|
|
COPY ./build/%%ARCH%%/dist ./dist
|
2016-06-03 17:21:46 +00:00
|
|
|
COPY ./build/%%ARCH%%/node_modules ./node_modules
|
|
|
|
COPY ./build/%%ARCH%%/gosuper ./gosuper
|
|
|
|
COPY ./build/%%ARCH%%/rootfs-overlay/ /
|
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
|
2016-09-23 22:15:00 +00:00
|
|
|
ENV CONFIG_MOUNT_POINT=/boot/config.json \
|
|
|
|
LED_FILE=/dev/null \
|
|
|
|
SUPERVISOR_IMAGE=resin/%%ARCH%%-supervisor
|
2016-06-03 17:21:46 +00:00
|
|
|
|
|
|
|
CMD [ "/sbin/init" ]
|
|
|
|
|
|
|
|
# -*- mode: dockerfile -*-
|
|
|
|
# vi: set ft=dockerfile :
|