fastwebdav / Dockerfile
ykxVK8yL5L's picture
Update Dockerfile
92a5891 verified
raw
history blame
691 Bytes
FROM ykxvk8yl5l/fast-webdav:client as builder
FROM ubuntu:22.04
COPY --from=builder /usr/bin/fast-webdav /usr/bin
RUN chmod a+x /usr/bin/fast-webdav
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/app
# COPY --chown=user --from=builder /usr/bin/fast-webdav /home/user/.local/bin
# RUN chmod a+x /home/user/.local/bin/fast-webdav
# CMD ["bash", "alist", "server"]
CMD ["fast-webdav", "--host", "0.0.0.0","--workdir","/home/user/app"]
EXPOSE 9867