mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
12 lines
232 B
Docker
12 lines
232 B
Docker
ARG BASE="noble-full"
|
|
FROM ghcr.io/koush/scrypted-common:${BASE}
|
|
|
|
WORKDIR /
|
|
RUN git clone --depth=1 https://github.com/koush/scrypted
|
|
|
|
WORKDIR /scrypted/server
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
CMD ["npm", "run", "serve-no-build"]
|