File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
RUN DEBIAN_FRONTEND=noninteractive \
10
10
&& apt-get update \
11
+ # python3 package is necessary to install `python3` executable for node-gyp
11
12
&& 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 \
13
14
&& rm -rf /var/lib/apt/lists/*
14
15
15
16
ENV 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
10
10
11
11
# Required for node-oracledb to buld on ARM64
12
12
RUN apt-get update \
13
+ # python3 package is necessary to install `python3` executable for node-gyp
13
14
# 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 \
15
16
&& rm -rf /var/lib/apt/lists/*
16
17
17
18
# 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
9
9
10
10
# Required for node-oracledb to buld on ARM64
11
11
RUN apt-get update \
12
+ # python3 package is necessary to install `python3` executable for node-gyp
12
13
# 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 \
14
15
&& rm -rf /var/lib/apt/lists/*
15
16
16
17
# 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
10
10
11
11
RUN DEBIAN_FRONTEND=noninteractive \
12
12
&& 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 \
14
15
&& rm -rf /var/lib/apt/lists/*
15
16
16
17
ENV NODE_ENV=production
@@ -30,7 +31,7 @@ RUN yarn config set network-timeout 120000 -g
30
31
31
32
# Required for node-oracledb to buld on ARM64
32
33
RUN apt-get update \
33
- && apt-get install -y python3 gcc g++ make cmake \
34
+ && apt-get install -y gcc g++ make cmake \
34
35
&& rm -rf /var/lib/apt/lists/*
35
36
36
37
# 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