mirror of
https://github.com/tl-open-source/tl-rtc-file.git
synced 2025-09-26 19:41:16 +08:00
16 lines
269 B
Docker
16 lines
269 B
Docker
FROM node:lts-alpine
|
|
|
|
COPY . /tlrtcfile
|
|
|
|
WORKDIR /tlrtcfile/svr
|
|
|
|
RUN npm config set registry https://registry.npmmirror.com; \
|
|
npm install -g pm2; \
|
|
npm install;
|
|
|
|
ENV tl_rtc_file_ws_host="ws://127.0.0.1"
|
|
|
|
EXPOSE 8444
|
|
|
|
CMD ["/bin/sh", "/tlrtcfile/docker-entrypoint.sh"]
|