Skip to content

I want to have an ACAP SDK image with a specific package #58

Answered by pataxis
pataxis asked this question in General
Discussion options

You must be logged in to vote

No, it's enough to create a Dockerfile for your application that is based on a public ACAP SDK image and install the packages you want.

Example based on ACAP SDK image that installs build tools

An example is openssl_curl_example where build tools like automake and autoconf are installed to build OpenSSL and curl libraries which are then used in the ACAP application.

In the example Dockerfile we can see that it's based on an official ACAP SDK image, using FROM

ARG ARCH=armv7hf
ARG VERSION=1.2
ARG UBUNTU_VERSION=20.04
ARG REPO=axisecp
ARG SDK=acap-native-sdk

FROM ${REPO}/${SDK}:${VERSION}-${ARCH}-ubuntu${UBUNTU_VERSION} as sdk

Then additional build tools (required to build OpenSSL and curl…

Replies: 1 comment

Comment options

pataxis
Jun 23, 2022
Maintainer Author

You must be logged in to vote
0 replies
Answer selected by pataxis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant