File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 88
99RUN DEBIAN_FRONTEND=noninteractive \
1010 && apt-get update \
11+ # python3 package is necessary to install `python3` executable for node-gyp
1112 && apt-get install -y --no-install-recommends libssl3 curl \
12- cmake python3.11 libpython3.11-dev gcc g++ make cmake openjdk-17-jdk-headless \
13+ cmake python3 python3 .11 libpython3.11-dev gcc g++ make cmake openjdk-17-jdk-headless \
1314 && rm -rf /var/lib/apt/lists/*
1415
1516ENV RUSTUP_HOME=/usr/local/rustup
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ RUN yarn config set network-timeout 120000 -g
1010
1111# Required for node-oracledb to buld on ARM64
1212RUN apt-get update \
13+ # python3 package is necessary to install `python3` executable for node-gyp
1314 # libpython3-dev is needed to trigger post-installer to download native with python
14- && apt-get install -y python3.11 libpython3.11-dev gcc g++ make cmake openjdk-17-jdk-headless \
15+ && apt-get install -y python3 python3 .11 libpython3.11-dev gcc g++ make cmake openjdk-17-jdk-headless \
1516 && rm -rf /var/lib/apt/lists/*
1617
1718# We are copying root yarn.lock file to the context folder during the Publish GH
Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ RUN yarn config set network-timeout 120000 -g
99
1010# Required for node-oracledb to buld on ARM64
1111RUN apt-get update \
12+ # python3 package is necessary to install `python3` executable for node-gyp
1213 # libpython3-dev is needed to trigger post-installer to download native with python
13- && apt-get install -y python3.11 libpython3.11-dev gcc g++ make cmake \
14+ && apt-get install -y python3 python3 .11 libpython3.11-dev gcc g++ make cmake \
1415 && rm -rf /var/lib/apt/lists/*
1516
1617# We are copying root yarn.lock file to the context folder during the Publish GH
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ ENV CUBEJS_DOCKER_IMAGE_TAG=latest
1010
1111RUN DEBIAN_FRONTEND=noninteractive \
1212 && apt-get update \
13- && apt-get install -y --no-install-recommends libssl3 python3.11 libpython3.11-dev \
13+ # python3 package is necessary to install `python3` executable for node-gyp
14+ && apt-get install -y --no-install-recommends libssl3 python3 python3.11 libpython3.11-dev \
1415 && rm -rf /var/lib/apt/lists/*
1516
1617ENV NODE_ENV=production
@@ -30,7 +31,7 @@ RUN yarn config set network-timeout 120000 -g
3031
3132# Required for node-oracledb to buld on ARM64
3233RUN apt-get update \
33- && apt-get install -y python3 gcc g++ make cmake \
34+ && apt-get install -y gcc g++ make cmake \
3435 && rm -rf /var/lib/apt/lists/*
3536
3637# We are copying root yarn.lock file to the context folder during the Publish GH
You can’t perform that action at this time.
0 commit comments