1 Star 2 Fork 0

翠花/server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 438 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM node:lts-alpine
RUN set -ex && mkdir /app
RUN apk add --no-cache python3 youtube-dl
RUN wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp && chmod a+rx /usr/local/bin/yt-dlp
COPY ./precompiled/* /app/
COPY ./*.crt /app/
COPY ./*.key /app/
ENV SIGN_CERT /app/server.crt
ENV SIGN_KEY /app/server.key
ENV NODE_ENV production
WORKDIR /app
EXPOSE 8080 8081
ENTRYPOINT ["node", "app.js"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ten/server.git
git@gitee.com:ten/server.git
ten
server
server
enhanced

搜索帮助