3a55f46
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:18-alpine WORKDIR /app # 克隆项目 RUN apk add --no-cache git && \ git clone https://github.com/xiao-cold/efilen-webdav.git . && \ npm install --production EXPOSE 8888 CMD ["npm", "start"]