mirror of
https://github.com/hassio-addons/addon-motioneye.git
synced 2025-05-05 03:31:22 +00:00
⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15 (#426)
* ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v15
* Update dependencies
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
parent
1639fa101c
commit
cec7bcc7bb
3 changed files with 36 additions and 36 deletions
2
.github/renovate.json
vendored
2
.github/renovate.json
vendored
|
@ -23,7 +23,7 @@
|
||||||
],
|
],
|
||||||
"versioningTemplate": "loose",
|
"versioningTemplate": "loose",
|
||||||
"datasourceTemplate": "repology",
|
"datasourceTemplate": "repology",
|
||||||
"depNameTemplate": "alpine_3_17/{{package}}"
|
"depNameTemplate": "alpine_3_19/{{package}}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["/Dockerfile$"],
|
"fileMatch": ["/Dockerfile$"],
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
ARG BUILD_FROM=ghcr.io/hassio-addons/base:13.2.2
|
ARG BUILD_FROM=ghcr.io/hassio-addons/base:15.0.3
|
||||||
# hadolint ignore=DL3006
|
# hadolint ignore=DL3006
|
||||||
FROM ${BUILD_FROM}
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
|
@ -6,42 +6,42 @@ FROM ${BUILD_FROM}
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
ARG MOTION_VERSION="4.5.1"
|
ARG MOTION_VERSION="4.6.0"
|
||||||
ARG MOTIONEYE_VERSION="ef1c42b57895324a2fb7129e63d37412061a82e2"
|
ARG MOTIONEYE_VERSION="ef1c42b57895324a2fb7129e63d37412061a82e2"
|
||||||
# hadolint ignore=DL3003
|
# hadolint ignore=DL3003
|
||||||
RUN \
|
RUN \
|
||||||
apk add --no-cache --virtual .build-dependencies \
|
apk add --no-cache --virtual .build-dependencies \
|
||||||
autoconf=2.71-r1 \
|
autoconf=2.71-r2 \
|
||||||
automake=1.16.5-r1 \
|
automake=1.16.5-r2 \
|
||||||
build-base=0.5-r3 \
|
build-base=0.5-r3 \
|
||||||
curl-dev=8.1.2-r0 \
|
curl-dev=8.5.0-r0 \
|
||||||
ffmpeg-dev=5.1.3-r0 \
|
ffmpeg-dev=6.1-r1 \
|
||||||
gettext-dev=0.21.1-r1 \
|
gettext-dev=0.22.3-r0 \
|
||||||
git=2.38.5-r0 \
|
git=2.43.0-r0 \
|
||||||
jpeg-dev=9e-r0 \
|
jpeg-dev=9e-r1 \
|
||||||
libjpeg-turbo-dev=2.1.4-r0 \
|
libjpeg-turbo-dev=3.0.1-r0 \
|
||||||
libmicrohttpd-dev=0.9.75-r0 \
|
libmicrohttpd-dev=0.9.77-r0 \
|
||||||
libwebp-dev=1.2.4-r2 \
|
libwebp-dev=1.3.2-r0 \
|
||||||
linux-headers=5.19.5-r0 \
|
linux-headers=6.5-r0 \
|
||||||
musl-dev=1.2.3-r5 \
|
musl-dev=1.2.4_git20230717-r4 \
|
||||||
python3-dev=3.10.12-r0 \
|
python3-dev=3.11.6-r1 \
|
||||||
v4l-utils-dev=1.22.1-r2 \
|
v4l-utils-dev=1.24.1-r1 \
|
||||||
\
|
\
|
||||||
&& apk add --no-cache \
|
&& apk add --no-cache \
|
||||||
cifs-utils=7.0-r0 \
|
cifs-utils=7.0-r2 \
|
||||||
ffmpeg-libs=5.1.3-r0 \
|
ffmpeg-libs=6.1-r1 \
|
||||||
ffmpeg=5.1.3-r0 \
|
ffmpeg=6.1-r1 \
|
||||||
libintl=0.21.1-r1 \
|
libintl=0.22.3-r0 \
|
||||||
libjpeg-turbo=2.1.4-r0 \
|
libjpeg-turbo=3.0.1-r0 \
|
||||||
libjpeg=9e-r0 \
|
libjpeg=9e-r1 \
|
||||||
libmicrohttpd=0.9.75-r0 \
|
libmicrohttpd=0.9.77-r0 \
|
||||||
libwebp=1.2.4-r2 \
|
libwebp=1.3.2-r0 \
|
||||||
mosquitto-clients=2.0.15-r1 \
|
mosquitto-clients=2.0.18-r0 \
|
||||||
nginx=1.22.1-r0 \
|
nginx=1.24.0-r14 \
|
||||||
py3-pip=22.3.1-r1 \
|
py3-pip=23.3.1-r0 \
|
||||||
python3=3.10.12-r0 \
|
python3=3.11.6-r1 \
|
||||||
rsync=3.2.7-r0 \
|
rsync=3.2.7-r4 \
|
||||||
v4l-utils=1.22.1-r2 \
|
v4l-utils=1.24.1-r1 \
|
||||||
\
|
\
|
||||||
&& curl -J -L -o /tmp/motion.tar.gz \
|
&& curl -J -L -o /tmp/motion.tar.gz \
|
||||||
"https://github.com/Motion-Project/motion/archive/release-${MOTION_VERSION}.tar.gz" \
|
"https://github.com/Motion-Project/motion/archive/release-${MOTION_VERSION}.tar.gz" \
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
build_from:
|
build_from:
|
||||||
aarch64: ghcr.io/hassio-addons/base:13.2.2
|
aarch64: ghcr.io/hassio-addons/base:15.0.3
|
||||||
amd64: ghcr.io/hassio-addons/base:13.2.2
|
amd64: ghcr.io/hassio-addons/base:15.0.3
|
||||||
armhf: ghcr.io/hassio-addons/base:13.2.2
|
armhf: ghcr.io/hassio-addons/base:15.0.3
|
||||||
armv7: ghcr.io/hassio-addons/base:13.2.2
|
armv7: ghcr.io/hassio-addons/base:15.0.3
|
||||||
i386: ghcr.io/hassio-addons/base:13.2.2
|
i386: ghcr.io/hassio-addons/base:15.0.3
|
||||||
codenotary:
|
codenotary:
|
||||||
base_image: codenotary@frenck.dev
|
base_image: codenotary@frenck.dev
|
||||||
signer: codenotary@frenck.dev
|
signer: codenotary@frenck.dev
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue