mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
ca9761585a
* Remove git reference from install-app Also fixed issue with missing sites/assets folder * Update custom app guide according to changes * Ignore apps that have no frontend code instead of failing
14 lines
255 B
Docker
14 lines
255 B
Docker
ARG FRAPPE_VERSION
|
|
ARG ERPNEXT_VERSION
|
|
|
|
FROM frappe/assets-builder:${FRAPPE_VERSION} as assets
|
|
|
|
ARG APP_NAME
|
|
COPY . apps/${APP_NAME}
|
|
RUN install-app ${APP_NAME}
|
|
|
|
|
|
FROM frappe/erpnext-nginx:${ERPNEXT_VERSION}
|
|
|
|
COPY --from=assets /out /usr/share/nginx/html
|