duck2api / Dockerfile
mikeee's picture
Update Dockerfile
026e823 verified
raw
history blame
286 Bytes
# FROM ghcr.io/aurora-develop/duck2api:latest
# Set Env PREFIX to /hf or in fact anything you like
FROM ghcr.io/guobao2333/deeplx-serverless:latest
# 暴露应用程序端口
# EXPOSE 6119
EXPOSE 6119
# 使用非 root 用户运行应用
USER node
# 启动应用
CMD ["npm", "start"]