fastwebdav / Dockerfile
ykxVK8yL5L's picture
Update Dockerfile
b195e0a verified
raw
history blame
747 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
RUN mkdir /home/user/app/configs
# CMD ["bash", "alist", "server"]
# CMD ["fast-webdav", "--host", "0.0.0.0","--workdir","/home/user/app"]
CMD ["./start.sh"]
EXPOSE 9867