2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-09 23:00:56 +00:00

Fix app name in custom app example

This commit is contained in:
Lev Vereshchagin 2021-12-22 16:47:50 +03:00
parent 03af8ca392
commit ffb00311e0

View File

@ -4,5 +4,5 @@ FROM frappe/frappe-worker:${FRAPPE_VERSION}
ARG APP_NAME
COPY --chown=frappe . ../apps/${APP_NAME}
RUN echo "frappe\ncomfort" >/home/frappe/frappe-bench/sites/apps.txt \
RUN echo "frappe\n${APP_NAME}" >/home/frappe/frappe-bench/sites/apps.txt \
&& ../env/bin/pip install --no-cache-dir -e ../apps/${APP_NAME}