mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
fix(erpnext-worker): Install gcc
This commit is contained in:
parent
6f9987447f
commit
fe813c62db
1 changed files with 7 additions and 0 deletions
|
|
@ -5,4 +5,11 @@ FROM ${DOCKER_REGISTRY_PREFIX}/frappe-worker:${IMAGE_TAG}
|
||||||
ARG GIT_REPO=https://github.com/frappe/erpnext
|
ARG GIT_REPO=https://github.com/frappe/erpnext
|
||||||
ARG GIT_BRANCH=develop
|
ARG GIT_BRANCH=develop
|
||||||
|
|
||||||
|
USER root
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install --no-install-recommends -y \
|
||||||
|
gcc \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
USER frappe
|
||||||
RUN install_app erpnext ${GIT_REPO} ${GIT_BRANCH}
|
RUN install_app erpnext ${GIT_REPO} ${GIT_BRANCH}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue