We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0561e48 commit 8af0c51Copy full SHA for 8af0c51
docker/github_actions/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.24.7-bullseye
+FROM golang:1.24.7-bookworm
2
3
# Tried to set Python to ignore warnings due to the instructions at this link:
4
# https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation
@@ -11,12 +11,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
11
gettext-base \
12
libyaml-dev \
13
python3-pip \
14
- python-setuptools \
+ python3-setuptools \
15
time \
16
unzip \
17
&& rm -rf /var/lib/apt/lists/*
18
19
-RUN pip install cqlsh
+RUN pip install cqlsh --break-system-packages
20
21
# verbose test output from `make`, can be disabled with V=0
22
ENV V=0
0 commit comments