mirror of
https://github.com/koush/scrypted.git
synced 2026-04-25 01:10:24 +01:00
12 lines
216 B
Docker
12 lines
216 B
Docker
FROM node:16
|
|
RUN apt-get -y update
|
|
RUN apt-get -y upgrade
|
|
EXPOSE 9443
|
|
EXPOSE 10080
|
|
COPY . .
|
|
WORKDIR /server
|
|
RUN apt-get -y update
|
|
RUN apt-get -y install libavahi-compat-libdnssd-dev
|
|
RUN npm install
|
|
CMD npm run serve
|