mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
31 lines
1.1 KiB
Docker
31 lines
1.1 KiB
Docker
ARG BASE="noble-lite"
|
|
FROM ubuntu:${BASE} AS header
|
|
|
|
ENV SCRYPTED_DOCKER_FLAVOR="lite"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# base tools and development stuff
|
|
RUN apt-get update && apt-get -y install \
|
|
curl software-properties-common apt-utils \
|
|
python3 && \
|
|
apt-get -y update && \
|
|
apt-get -y upgrade
|
|
|
|
ARG NODE_VERSION=22
|
|
RUN apt-get install -y ca-certificates curl gnupg
|
|
RUN mkdir -p /etc/apt/keyrings
|
|
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor --yes -o /etc/apt/keyrings/nodesource.gpg
|
|
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_"$NODE_VERSION".x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
|
|
RUN apt-get update && apt-get install -y nodejs
|
|
|
|
ENV SCRYPTED_INSTALL_ENVIRONMENT="docker"
|
|
ENV SCRYPTED_CAN_RESTART="true"
|
|
ENV SCRYPTED_VOLUME="/server/volume"
|
|
ENV SCRYPTED_INSTALL_PATH="/server"
|
|
ENV SHELL="/bin/bash"
|
|
|
|
RUN test -f "/usr/bin/python3" && test -f "/usr/bin/python3.12"
|
|
ENV SCRYPTED_PYTHON_PATH="/usr/bin/python3"
|
|
ENV SCRYPTED_PYTHON312_PATH="/usr/bin/python3.12"
|