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"] | |
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"] | |