Construct cache and metadata directories with global rw permissions

This commit is contained in:
Tucker Kern 2025-07-10 16:58:17 +00:00 committed by Tucker Kern
parent 122fc34a75
commit 8a96d12f69

View file

@ -69,5 +69,8 @@ ENV SOURCE="docker"
ENV NUSQLITE3_DIR=${NUSQLITE3_DIR}
ENV NUSQLITE3_PATH=${NUSQLITE3_PATH}
# Construct cache and metadata directories
RUN mkdir -p ${CONFIG_PATH} ${METADATA_PATH} && chmod 777 ${CONFIG_PATH} ${METADATA_PATH}
ENTRYPOINT ["tini", "--"]
CMD ["node", "index.js"]