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
15 lines
241 B
Docker
15 lines
241 B
Docker
# syntax=docker/dockerfile:1.3
|
|
|
|
ARG ERPNEXT_VERSION
|
|
FROM frappe/erpnext-worker:${ERPNEXT_VERSION}
|
|
|
|
USER root
|
|
|
|
ARG APP_NAME
|
|
COPY . ../apps/${APP_NAME}
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
install-app ${APP_NAME}
|
|
|
|
USER frappe
|