You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
297 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. FROM node:8.17
  2. # Install Bluetooth software
  3. RUN apt-get update
  4. RUN apt-get install -y bluez bluetooth
  5. # Fetch data from repo
  6. COPY . /app
  7. WORKDIR /app
  8. # Install Node dependencies
  9. RUN npm install
  10. # Use this volume for SQLite database
  11. VOLUME ["/var/sqlite"]
  12. ENTRYPOINT bash docker-entrypoint.sh