2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 01:55:39 +00:00

Add entrypoint for running development worker

This commit is contained in:
Oliver Walters
2021-05-12 22:12:26 +10:00
parent 530f28ba95
commit 719b1775f2
3 changed files with 23 additions and 1 deletions

View File

@ -105,6 +105,8 @@ FROM base as dev
WORKDIR ${INVENTREE_SRC_DIR}
COPY start_dev_server.sh ${INVENTREE_HOME}/start_dev_server.sh
COPY start_dev_worker.sh ${INVENTREE_HOME}/start_dev_worker.sh
RUN chmod 755 ${INVENTREE_HOME}/start_dev_server.sh
RUN chmod 755 ${INVENTREE_HOME}/start_dev_worker.sh
CMD ["bash", "/home/inventree/start_dev_server.sh"]