Skip to content

Commit 0b7a200

Browse files
author
Joshua
committed
apt-get install ca-certificates in latest and local Dockerfiles
1 parent 1203291 commit 0b7a200

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/cubejs-docker/latest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN yarn config set network-timeout 120000 -g
1111
RUN apt-get update \
1212
# python3 package is necessary to install `python3` executable for node-gyp
1313
# libpython3-dev is needed to trigger post-installer to download native with python
14-
&& apt-get install -y python3 python3.11 libpython3.11-dev gcc g++ make cmake \
14+
&& apt-get install -y python3 python3.11 libpython3.11-dev gcc g++ make cmake ca-certificates \
1515
&& rm -rf /var/lib/apt/lists/*
1616

1717
# We are copying root yarn.lock file to the context folder during the Publish GH

packages/cubejs-docker/local.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ENV CUBEJS_DOCKER_IMAGE_TAG=latest
1111
RUN DEBIAN_FRONTEND=noninteractive \
1212
&& apt-get update \
1313
# 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+
&& apt-get install -y --no-install-recommends libssl3 python3 python3.11 libpython3.11-dev ca-certificates \
1515
&& rm -rf /var/lib/apt/lists/*
1616

1717
ENV NODE_ENV=production

0 commit comments

Comments
 (0)