mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 22:23:13 +00:00
11 lines
152 B
Docker
11 lines
152 B
Docker
FROM resin/rpi-buildstep
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y -q nodejs npm openvpn
|
|
|
|
ADD . /supervisor
|
|
|
|
WORKDIR /supervisor
|
|
|
|
CMD ["npm", "start"]
|