2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-26 00:28:24 +00:00

17 lines
417 B
Docker
Raw Normal View History

2020-02-10 13:30:54 +05:30
FROM bitnami/node:10-prod
COPY build/erpnext-nginx/install_app.sh /install_app
2020-02-10 13:30:54 +05:30
RUN /install_app erpnext https://github.com/frappe/erpnext version-11
2020-02-10 13:30:54 +05:30
FROM frappe/frappe-nginx:v11
2020-02-10 13:30:54 +05:30
COPY --from=0 /home/frappe/frappe-bench/sites/ /var/www/html/
COPY --from=0 /rsync /rsync
RUN echo -n "\nerpnext" >> /var/www/html/apps.txt
2020-02-10 13:30:54 +05:30
VOLUME [ "/assets" ]
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]