Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
imwithye authored Jan 8, 2024
1 parent b8faae9 commit b4a538f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,12 @@ RUN cd /app/Pangolin && mkdir build && cd build && cmake .. && make -j && make i
# NumCpp
RUN cd /app && git clone https://github.com/dpilger26/NumCpp.git && cd NumCpp && git checkout a108470 && \
mkdir -p build && cd build && cmake .. && cmake --build . --target install && cd /app

# Insta360 MediaSDK
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32 && \
add-apt-repository -y "deb http://security.ubuntu.com/ubuntu xenial-security main" && \
apt update && apt install -y libjasper1 libjasper-dev
RUN wget https://file.insta360.com/static/07814586d4c390c59ffaab8b90d09659/LinuxSDK20231211.zip -O /tmp/SDK.zip && \
unzip /tmp/SDK.zip -d /tmp/SDK && \
unzip /tmp/SDK/LinuxSDK20231211/libMediaSDK-dev_2.0-0_ubuntu18.04_amd64.zip -d /tmp/MediaSDK && \
dpkg -i /tmp/MediaSDK/libMediaSDK-dev_2.0-0_ubuntu18.04_amd64/libMediaSDK-dev_2.0-0_amd64_ubuntu18.04.deb

0 comments on commit b4a538f

Please sign in to comment.