add SuperVanish data file symlink in Dockerfile

This commit is contained in:
cuqmbr 2025-07-09 11:28:29 +03:00
parent cb159cdb01
commit d9c548e4da
Signed by: cuqmbr
GPG Key ID: 0AA446880C766199

View File

@ -30,6 +30,10 @@ RUN mkdir ${DATA_PATH}/world_the_end && \
RUN touch ${DATA_PATH}/pv-voice_mutes.json && \
ln -sf ${DATA_PATH}/pv-voice_mutes.json \
${CONFIG_PATH}/plugins/PlasmoVoice/voice_mutes.json
RUN mkdir -p ${DATA_PATH}/SuperVanish && \
touch ${DATA_PATH}/SuperVanish/data.yml && \
ln -sf ${DATA_PATH}/SuperVanish/data.yml \
${CONFIG_PATH}/plugins/SuperVanish/data.yml
VOLUME ${DATA_PATH}