Mise à jour de 'Dockerfile'
This commit is contained in:
parent
97cb094551
commit
e4f5c98aa5
1 changed files with 7 additions and 4 deletions
11
Dockerfile
11
Dockerfile
|
@ -6,16 +6,19 @@ RUN apt-get install -y fuse
|
|||
|
||||
FROM base-deps
|
||||
WORKDIR /root
|
||||
|
||||
# Prepare mount points
|
||||
RUN mkdir audio
|
||||
RUN mkdir radio
|
||||
RUN mkdir .config && cd .config && mkdir rclone
|
||||
|
||||
# Configuration files copy
|
||||
COPY rclone.conf .config/rclone/rclone.conf
|
||||
COPY rygel.conf .config/rygel.conf
|
||||
RUN mkdir .config && cd .config && mkdir rclone
|
||||
COPY config/rclone.conf .config/rclone/rclone.conf
|
||||
COPY config/rygel.conf .config/rygel.conf
|
||||
|
||||
# Runtime script copy
|
||||
COPY wrapper.sh wrapper.sh
|
||||
COPY bin/wrapper.sh wrapper.sh
|
||||
RUN chmod +x wrapper.sh
|
||||
|
||||
# Runtime processes
|
||||
CMD /root/wrapper.sh
|
||||
|
|
Reference in a new issue