mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 14:13:08 +00:00
e12f289d9d
When an ENV command has multiple environment variables defined they key/value should be separated by an equals sign, not by a space. Signed-off-by: Petros Angelatos <petrosagg@gmail.com>
21 lines
454 B
Docker
21 lines
454 B
Docker
# Minimal runtime image
|
|
FROM resin/%%ARCH%%-supervisor-base:20160913
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY ./build/%%ARCH%%/src ./src
|
|
COPY ./build/%%ARCH%%/node_modules ./node_modules
|
|
COPY ./build/%%ARCH%%/gosuper ./gosuper
|
|
COPY ./build/%%ARCH%%/rootfs-overlay/ /
|
|
|
|
VOLUME /data
|
|
|
|
ENV CONFIG_MOUNT_POINT=/boot/config.json \
|
|
LED_FILE=/dev/null \
|
|
SUPERVISOR_IMAGE=resin/%%ARCH%%-supervisor
|
|
|
|
CMD [ "/sbin/init" ]
|
|
|
|
# -*- mode: dockerfile -*-
|
|
# vi: set ft=dockerfile :
|