filen-webdav / Dockerfile
bingloo's picture
Upload 2 files
6a31168 verified
raw
history blame
133 Bytes
FROM node:20-alpine
WORKDIR /app
RUN npm install @filen/webdav@latest
COPY . .
EXPOSE 1900
CMD ["node", "start.mjs"]