nope/Dockerfile
2021-01-21 15:32:51 +01:00

14 lines
283 B
Docker

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"]