Skip to content

Instantly share code, notes, and snippets.

@jdhuntington
Created August 29, 2017 22:05
Show Gist options
  • Save jdhuntington/41c8d8fc32234a442b1c83edd7cf7376 to your computer and use it in GitHub Desktop.
Save jdhuntington/41c8d8fc32234a442b1c83edd7cf7376 to your computer and use it in GitHub Desktop.
Dockerfile to build azure iot edge
FROM ubuntu:16.04
WORKDIR /work
RUN apt-get update
RUN apt-get install -y \
build-essential \
git \
aptitude \
cmake \
libssl-dev \
curl libcurl4-openssl-dev \
uuid-dev \
pkg-config \
libglib2.0-dev
CMD tools/build.sh --disable-native-remote-modules
ADD . .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment