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
17 lines
297 B
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
|