mirror of
https://github.com/tl-open-source/tl-rtc-file.git
synced 2025-09-26 19:41:16 +08:00
10 lines
165 B
Docker
10 lines
165 B
Docker
FROM node:lts-alpine
|
|
|
|
COPY . /tlrtcfile
|
|
|
|
WORKDIR /tlrtcfile/svr
|
|
|
|
RUN npm install --registry=https://registry.npmmirror.com && npm run build:pro
|
|
|
|
ENTRYPOINT ["node"]
|