mirror of
https://github.com/koush/scrypted.git
synced 2026-02-08 08:19:56 +00:00
18 lines
589 B
Docker
18 lines
589 B
Docker
ARG BASE="18-bullseye-full"
|
|
FROM koush/scrypted-common:${BASE}
|
|
|
|
WORKDIR /
|
|
# cache bust
|
|
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
|
ARG SCRYPTED_INSTALL_VERSION="latest"
|
|
RUN test -n "$SCRYPTED_INSTALL_VERSION"
|
|
RUN npx -y scrypted@latest install-server ${SCRYPTED_INSTALL_VERSION}
|
|
WORKDIR /server
|
|
|
|
# this prevents node from preferring ipv6 addresses locally on
|
|
# networks with busted ipv6 setups.
|
|
# https://github.com/nodejs/node/issues/41145#issuecomment-992948130
|
|
ENV NODE_OPTIONS="--dns-result-order=ipv4first"
|
|
|
|
CMD npm --prefix /server exec scrypted-serve
|