mirror of
https://github.com/Mo3he/Axis_Cam_Tailscale.git
synced 2026-06-09 20:42:37 +00:00
14 lines
380 B
Docker
14 lines
380 B
Docker
ARG ARCH=armv7hf
|
|
ARG VERSION=1.15.1
|
|
ARG UBUNTU_VERSION=22.04
|
|
ARG REPO=axisecp
|
|
ARG SDK=acap-native-sdk
|
|
|
|
FROM ${REPO}/${SDK}:${VERSION}-${ARCH}-ubuntu${UBUNTU_VERSION}
|
|
|
|
# Building the ACAP application
|
|
COPY ./app /opt/app/
|
|
WORKDIR /opt/app
|
|
RUN arm-linux-gnueabihf-strip -s lib/tailscale lib/tailscaled
|
|
RUN . /opt/axis/acapsdk/environment-setup* && acap-build -a Tailscale_VPN_run ./
|