mirror of
https://github.com/koush/scrypted.git
synced 2026-02-19 04:52:32 +00:00
81 lines
2.7 KiB
Docker
81 lines
2.7 KiB
Docker
################################################################
|
|
# Begin section generated from template/Dockerfile.full.header
|
|
# This common file will be used by both Docker and the linux
|
|
# install script.
|
|
################################################################
|
|
ARG BASE="jammy"
|
|
FROM ubuntu:${BASE} as header
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# base tools and development stuff
|
|
RUN apt-get update && apt-get -y install \
|
|
curl software-properties-common apt-utils \
|
|
build-essential \
|
|
cmake \
|
|
ffmpeg \
|
|
gcc \
|
|
libcairo2-dev \
|
|
libgirepository1.0-dev \
|
|
pkg-config && \
|
|
apt-get -y update && \
|
|
apt-get -y upgrade
|
|
|
|
ARG NODE_VERSION=18
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash -
|
|
RUN apt-get update && apt-get install -y nodejs
|
|
|
|
# python native
|
|
RUN apt-get -y install \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
python3-wheel
|
|
|
|
# these are necessary for pillow-simd, additional on disk size is small
|
|
# but could consider removing this.
|
|
RUN apt-get -y install \
|
|
libjpeg-dev zlib1g-dev
|
|
|
|
# plugins support fallback to pillow, but vips is faster.
|
|
RUN apt-get -y install \
|
|
libvips
|
|
|
|
# gstreamer native https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c#install-gstreamer-on-ubuntu-or-debian
|
|
RUN apt-get -y install \
|
|
gstreamer1.0-tools gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-libav gstreamer1.0-alsa \
|
|
gstreamer1.0-vaapi
|
|
|
|
# python3 gstreamer bindings
|
|
RUN apt-get -y install \
|
|
python3-gst-1.0
|
|
|
|
# armv7l does not have wheels for any of these
|
|
# and compile times would forever, if it works at all.
|
|
# furthermore, it's possible to run 32bit docker on 64bit arm,
|
|
# which causes weird behavior in python which looks at the arch version
|
|
# which still reports 64bit, even if running in 32bit docker.
|
|
# this scenario is not supported and will be reported at runtime.
|
|
# this bit is not necessary on amd64, but leaving it for consistency.
|
|
RUN apt-get -y install \
|
|
python3-matplotlib \
|
|
python3-numpy \
|
|
python3-opencv \
|
|
python3-pil \
|
|
python3-skimage
|
|
|
|
# allow pip to install to system
|
|
RUN rm -f /usr/lib/python**/EXTERNALLY-MANAGED
|
|
|
|
# pyvips is broken on x86 due to mismatch ffi
|
|
# https://stackoverflow.com/questions/62658237/it-seems-that-the-version-of-the-libffi-library-seen-at-runtime-is-different-fro
|
|
|
|
RUN python3 -m pip install --upgrade pip
|
|
RUN python3 -m pip install --force-reinstall --no-binary :all: cffi
|
|
RUN python3 -m pip install debugpy typing_extensions psutil
|
|
|
|
################################################################
|
|
# End section generated from template/Dockerfile.full.header
|
|
################################################################
|