mirror of
https://github.com/hassio-addons/addon-motioneye.git
synced 2025-05-05 03:31:22 +00:00
64 lines
2 KiB
Docker
Executable file
64 lines
2 KiB
Docker
Executable file
ARG BUILD_FROM=hassioaddons/base:8.0.1
|
|
# hadolint ignore=DL3006
|
|
FROM ${BUILD_FROM}
|
|
|
|
# Set shell
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# Copy Python requirements file
|
|
COPY requirements.txt /tmp/
|
|
|
|
# Setup base
|
|
RUN \
|
|
apk add --no-cache --virtual .build-dependencies \
|
|
curl-dev=7.69.1-r0 \
|
|
gcc=9.3.0-r2 \
|
|
jpeg-dev=9d-r0 \
|
|
musl-dev=1.1.24-r9 \
|
|
python2-dev=2.7.18-r0 \
|
|
\
|
|
&& apk add --no-cache \
|
|
cifs-utils=6.10-r1 \
|
|
ffmpeg=4.3.1-r0 \
|
|
libcurl=7.69.1-r0 \
|
|
libjpeg=9d-r0 \
|
|
mosquitto-clients=1.6.9-r0 \
|
|
motion@edge=4.3.1-r0 \
|
|
nginx=1.18.0-r0 \
|
|
python2=2.7.18-r0 \
|
|
\
|
|
&& python -m ensurepip \
|
|
\
|
|
&& pip install --no-cache-dir -r /tmp/requirements.txt \
|
|
\
|
|
&& apk del --no-cache --purge .build-dependencies \
|
|
&& rm -f -r /tmp/*
|
|
|
|
# Copy root filesystem
|
|
COPY rootfs /
|
|
|
|
# Build arguments
|
|
ARG BUILD_ARCH
|
|
ARG BUILD_DATE
|
|
ARG BUILD_REF
|
|
ARG BUILD_VERSION
|
|
|
|
# Labels
|
|
LABEL \
|
|
io.hass.name="motionEye" \
|
|
io.hass.description="Simple, elegant and feature-rich CCTV/NVR for your cameras" \
|
|
io.hass.arch="${BUILD_ARCH}" \
|
|
io.hass.type="addon" \
|
|
io.hass.version=${BUILD_VERSION} \
|
|
maintainer="Franck Nijhof <frenck@addons.community>" \
|
|
org.opencontainers.image.title="motionEye" \
|
|
org.opencontainers.image.description="Simple, elegant and feature-rich CCTV/NVR for your cameras" \
|
|
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
|
|
org.opencontainers.image.authors="Franck Nijhof <frenck@addons.community>" \
|
|
org.opencontainers.image.licenses="MIT" \
|
|
org.opencontainers.image.url="https://addons.community" \
|
|
org.opencontainers.image.source="https://github.com/hassio-addons/addon-motioneye" \
|
|
org.opencontainers.image.documentation="https://github.com/hassio-addons/addon-motioneye/blob/master/README.md" \
|
|
org.opencontainers.image.created=${BUILD_DATE} \
|
|
org.opencontainers.image.revision=${BUILD_REF} \
|
|
org.opencontainers.image.version=${BUILD_VERSION}
|