nope/Dockerfile

14 lines
283 B
Docker
Raw Normal View History

2021-01-21 14:32:51 +00:00
FROM node:latest
RUN mkdir /nope
COPY . /nope/
# Create a Volume containg the configuration
WORKDIR /nope
# Install Binaries
RUN npm install
# Execute the Kernel
CMD ["node","./dist/lib/cli/runNopeBackend.js", "-c","io-server","-l","info","-f","./config/settings_wamo_ips.json"]