Skip to content

Instantly share code, notes, and snippets.

@ThomasPe
Created September 16, 2020 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasPe/4f15c837c0dfc838dc58c9bd8377958b to your computer and use it in GitHub Desktop.
Save ThomasPe/4f15c837c0dfc838dc58c9bd8377958b to your computer and use it in GitHub Desktop.
Docker configuration for using noble / BLE in Azure IoT Edge
FROM node:10-slim
RUN apt-get update || : && apt-get -y install bluetooth bluez libbluetooth-dev libudev-dev build-essential make python
WORKDIR /app/
COPY package*.json ./
RUN npm install --production
COPY app.js ./
USER root
CMD ["node", "app.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment