File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed
presto-native-execution/scripts/dockerfiles Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,19 @@ COPY velox/scripts /velox/scripts
3737COPY velox/CMake/resolve_dependency_modules/arrow/cmake-compatibility.patch /velox
3838ENV VELOX_ARROW_CMAKE_PATCH=/velox/cmake-compatibility.patch
3939# install rpm needed for minio install.
40- RUN mkdir build && \
41- (cd build && ../scripts/setup-ubuntu.sh && \
42- apt install -y rpm && \
43- ../velox/scripts/setup-ubuntu.sh install_adapters && \
44- ../scripts/setup-adapters.sh ) && \
45- rm -rf build
40+ # RUN mkdir build && \
41+ # (cd build && ../scripts/setup-ubuntu.sh && \
42+ # apt install -y rpm && \
43+ # ../velox/scripts/setup-ubuntu.sh install_adapters && \
44+ # ../scripts/setup-adapters.sh ) && \
45+ # rm -rf build \
46+ RUN mkdir build && bash -c "{ \
47+ set -euxo pipefail; \
48+ cd build; \
49+ ../scripts/setup-ubuntu.sh; \
50+ apt-get update && apt-get install -y rpm; \
51+ ../velox/scripts/setup-ubuntu.sh install_adapters; \
52+ ../scripts/setup-adapters.sh; \
53+ }" && \
54+ rm -rf build
55+
You can’t perform that action at this time.
0 commit comments