2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-21 03:29:01 +00:00
frappe_docker/build/erpnext-nginx/v12.Dockerfile

17 lines
417 B
Docker
Raw Normal View History

2020-02-10 08:00:54 +00:00
FROM bitnami/node:12-prod
COPY build/erpnext-nginx/install_app.sh /install_app
2020-02-10 08:00:54 +00:00
RUN /install_app erpnext https://github.com/frappe/erpnext version-12
2020-02-10 08:00:54 +00:00
FROM frappe/frappe-nginx:v12
2020-02-10 08:00:54 +00:00
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 08:00:54 +00:00
VOLUME [ "/assets" ]
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]