refactor: reuse Dockerfile(s)
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
FROM bitnami/node:12-prod
|
||||
ARG NODE_IMAGE_TAG=12-prod
|
||||
FROM bitnami/node:${NODE_IMAGE_TAG}
|
||||
|
||||
COPY build/erpnext-nginx/install_app.sh /install_app
|
||||
|
||||
RUN /install_app erpnext https://github.com/frappe/erpnext
|
||||
ARG GIT_BRANCH=develop
|
||||
RUN /install_app erpnext https://github.com/frappe/erpnext ${GIT_BRANCH}
|
||||
|
||||
FROM frappe/frappe-nginx:develop
|
||||
FROM frappe/frappe-nginx:${GIT_BRANCH}
|
||||
|
||||
COPY --from=0 /home/frappe/frappe-bench/sites/ /var/www/html/
|
||||
COPY --from=0 /rsync /rsync
|
||||
|
||||
Reference in New Issue
Block a user