live video streaming server in golang
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
154 B

FROM node:13.12
ENV WEBUI_DIR /src/webui/
RUN mkdir -p $WEBUI_DIR
COPY package.json $WEBUI_DIR/
WORKDIR $WEBUI_DIR
RUN npm install
COPY . $WEBUI_DIR/