Mise à jour de 'Dockerfile'

This commit is contained in:
Pierre Guillod 2023-07-16 13:03:40 +02:00
parent 97cb094551
commit e4f5c98aa5

View file

@ -6,16 +6,19 @@ RUN apt-get install -y fuse
FROM base-deps FROM base-deps
WORKDIR /root WORKDIR /root
# Prepare mount points
RUN mkdir audio RUN mkdir audio
RUN mkdir radio RUN mkdir radio
RUN mkdir .config && cd .config && mkdir rclone
# Configuration files copy # Configuration files copy
COPY rclone.conf .config/rclone/rclone.conf RUN mkdir .config && cd .config && mkdir rclone
COPY rygel.conf .config/rygel.conf COPY config/rclone.conf .config/rclone/rclone.conf
COPY config/rygel.conf .config/rygel.conf
# Runtime script copy # Runtime script copy
COPY wrapper.sh wrapper.sh COPY bin/wrapper.sh wrapper.sh
RUN chmod +x wrapper.sh RUN chmod +x wrapper.sh
# Runtime processes
CMD /root/wrapper.sh CMD /root/wrapper.sh