File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
tools/docker-images/clp-package Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ COPY ./build/clp-package /opt/clp
55WORKDIR /root
66
77COPY ./tools/docker-images/clp-package/setup-scripts ./setup-scripts
8- RUN ./setup-scripts/install-prebuilt-packages.sh && \
9- rm -rf ./setup-scripts/
8+ RUN ./setup-scripts/install-prebuilt-packages.sh \
9+ && rm -rf ./setup-scripts/
1010
1111# Remove cached files
1212RUN apt-get clean \
@@ -16,9 +16,9 @@ RUN apt-get clean \
1616FROM scratch
1717COPY --from=base / /
1818
19- ENV PATH="/opt/clp/sbin:${PATH}"
20- ENV PATH="/opt/clp/bin:${PATH}"
21- ENV PYTHONPATH="/opt/clp/lib/python3/site-packages"
2219ENV CLP_HOME="/opt/clp"
20+ ENV PATH="${CLP_HOME}/sbin:${PATH}"
21+ ENV PATH="${CLP_HOME}/bin:${PATH}"
22+ ENV PYTHONPATH="${CLP_HOME}/lib/python3/site-packages"
2323
2424USER 1000:1000
You can’t perform that action at this time.
0 commit comments