File size: 816 Bytes
ee79b0e
 
 
 
92a5891
 
 
 
ee79b0e
 
 
 
 
 
 
 
 
 
 
 
 
92a5891
ee79b0e
92a5891
ee79b0e
d79a05e
 
b195e0a
 
 
ee79b0e
b195e0a
 
ee79b0e
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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

COPY --chown=user start.sh $HOME/app
RUN chmod +x $HOME/app/start.sh

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