FROM node:8.17 # Install Bluetooth software RUN apt-get update RUN apt-get install -y bluez bluetooth # Fetch data from repo COPY . /app WORKDIR /app # Install Node dependencies RUN npm install # Use this volume for SQLite database VOLUME ["/var/sqlite"] ENTRYPOINT bash docker-entrypoint.sh