mirror of
https://github.com/koush/scrypted.git
synced 2026-02-19 13:02:33 +00:00
12 lines
247 B
Docker
12 lines
247 B
Docker
ARG BASE="16"
|
|
FROM koush/scrypted-common:${BASE}
|
|
|
|
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
|