mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-10 15:20:55 +00:00
25 lines
640 B
Docker
25 lines
640 B
Docker
ARG NODE_IMAGE_TAG=12-buster-slim
|
|
ARG GIT_BRANCH=develop
|
|
FROM node:${NODE_IMAGE_TAG}
|
|
|
|
ARG GIT_BRANCH
|
|
COPY install_app.sh /install_app
|
|
RUN chmod +x /install_app && \
|
|
apt-get update -y && \
|
|
apt-get install build-essential git python2 -y && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
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;"]
|