Skip to content

Instantly share code, notes, and snippets.

@westonmyers
Created February 14, 2023 21:55
Show Gist options
  • Save westonmyers/00a6f80aa71794b45a9fbcd8f0695f41 to your computer and use it in GitHub Desktop.
Save westonmyers/00a6f80aa71794b45a9fbcd8f0695f41 to your computer and use it in GitHub Desktop.
#sid/bullseye/buster
RELEASE=sid
FROM debian:$RELEASE
WORKDIR /CODE
RUN apt-get update &&\
apt-get -y install cmake build-essential git protobuf-compiler libprotobuf-dev libusb-1.0.0-dev libssl-dev libboost-dev libboost-system-dev libboost-log-dev &&\
git clone -b patch-1 https://github.com/westonmyers/aasdk &&\
cd /CODE/aasdk &&\
cmake -DCMAKE_BUILD_TYPE=Release . &&\
make -j $(nproc)
CMD dpkg-query -s libssl-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment