diff --git a/applications/datamanager/Dockerfile b/applications/datamanager/Dockerfile index b1778fb56..69eabd105 100644 --- a/applications/datamanager/Dockerfile +++ b/applications/datamanager/Dockerfile @@ -17,10 +17,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && apt-get autoremove -y \ && rm -rf /var/lib/apt/lists/* -RUN rustup toolchain install stable +RUN rustup toolchain install stable RUN rustup default stable +ENV LIBRARY_PATH=/usr/local/lib:$LIBRARY_PATH +ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH +ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH + WORKDIR /app FROM chef AS planner