diff --git a/templates/build.Dockerfile b/templates/build.Dockerfile index 7dabd96..e7fecd6 100644 --- a/templates/build.Dockerfile +++ b/templates/build.Dockerfile @@ -3,13 +3,13 @@ FROM ${base_image} USER root -ARG build_id=0 -RUN echo ${build_id} - RUN microdnf -y module enable nodejs:{{.NODEJS_VERSION}} RUN microdnf --setopt=install_weak_deps=0 --setopt=tsflags=nodocs install -y {{.PACKAGES}} && microdnf clean all RUN echo uid:gid "{{.CNB_USER_ID}}:{{.CNB_GROUP_ID}}" USER {{.CNB_USER_ID}}:{{.CNB_GROUP_ID}} -RUN echo "CNB_STACK_ID: {{.CNB_STACK_ID}}" \ No newline at end of file +RUN echo "CNB_STACK_ID: {{.CNB_STACK_ID}}" + +ARG build_id=0 +RUN echo ${build_id}