FROM ykxvk8yl5l/fast-webdav:client as builder FROM ubuntu:22.04 # 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 +x /home/user/.local/bin/fast-webdav # CMD ["bash", "alist", "server"] CMD ["/usr/bin/fast-webdav", "--host", "0.0.0.0"] EXPOSE 9867