mirror of
https://github.com/koush/scrypted.git
synced 2026-02-11 09:34:27 +00:00
10 lines
258 B
Docker
10 lines
258 B
Docker
ARG BASE="16-bullseye-s6"
|
|
FROM koush/scrypted-common:${BASE}
|
|
|
|
WORKDIR /
|
|
# cache bust
|
|
# ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
|
RUN npx -y scrypted install-server
|
|
WORKDIR /server
|
|
CMD npm --prefix /server exec scrypted-serve
|