fdav / Dockerfile
exable324's picture
Create Dockerfile
3a55f46 verified
raw
history blame
214 Bytes
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"]