mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 00:55:10 +00:00
22 lines
595 B
Docker
22 lines
595 B
Docker
ARG NODE_IMAGE_TAG=12-prod
|
|
ARG GIT_BRANCH=develop
|
|
FROM bitnami/node:${NODE_IMAGE_TAG}
|
|
|
|
# make it faster (cached layer) for next "/install_app" step
|
|
RUN install_packages git python2
|
|
|
|
ARG GIT_BRANCH
|
|
COPY build/erpnext-nginx/install_app.sh /install_app
|
|
|
|
RUN /install_app erpnext https://github.com/frappe/erpnext ${GIT_BRANCH}
|
|
|
|
FROM frappe/frappe-nginx:${GIT_BRANCH}
|
|
|
|
COPY --from=0 /home/frappe/frappe-bench/sites/ /var/www/html/
|
|
COPY --from=0 /rsync /rsync
|
|
RUN echo "erpnext" >> /var/www/html/apps.txt
|
|
|
|
VOLUME [ "/assets" ]
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
CMD ["nginx", "-g", "daemon off;"]
|