mirror of
https://github.com/Mo3he/Axis_Cam_Tailscale.git
synced 2026-08-20 14:17:08 +00:00
Updated Tailscale binaries to 1.60.0 and added version that automatically keeps tailscale up to date.
13 lines
294 B
Docker
13 lines
294 B
Docker
ARG ARCH=armv7hf
|
|
ARG VERSION=1.3
|
|
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 . /opt/axis/acapsdk/environment-setup* && acap-build ./
|