mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
13 lines
236 B
Docker
13 lines
236 B
Docker
# To build the actual image change the source
|
|
# image to resin/rpi-raspbian:jessie
|
|
FROM tianon/debian:jessie
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y -q nodejs npm openvpn
|
|
|
|
ADD . /supervisor
|
|
|
|
WORKDIR /supervisor
|
|
|
|
CMD ["npm", "start"]
|