mirror of
https://github.com/koush/scrypted.git
synced 2026-02-08 08:19:56 +00:00
11 lines
225 B
Docker
11 lines
225 B
Docker
FROM koush/scrypted-common
|
|
|
|
WORKDIR /
|
|
RUN npx -y scrypted install-server && \
|
|
npx -y scrypted create-run-server-script /scrypted-serve.sh && \
|
|
chmod +x /scrypted-serve.sh
|
|
|
|
RUN mkdir -p /server
|
|
|
|
CMD /scrypted-serve.sh
|