Skip to content

Commit 1fca9ee

Browse files
Josh-a-eJoshua
and
Joshua
authored
fix(docker): apt-get install ca-certificates in latest and local Dockerfiles
Co-authored-by: Joshua <joshua@storetrials.com>
1 parent 9ea0b9c commit 1fca9ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/cubejs-docker/latest.Dockerfile

+1-1
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

+1-1
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)