File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
instrumentation/otel-webserver-module/docker/almalinux8 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,21 +37,21 @@ RUN groupadd -r swuser && useradd -u 1000 -g swuser -m -s /sbin/nologin -c "defa
3737
3838# ---- apt packages (Debian equivalents of your dnf list) ----
3939ENV DEBIAN_FRONTEND=noninteractive
40+
4041RUN set -eux; \
4142 apt-get update; \
4243 apt-get install -y --no-install-recommends \
4344 ca-certificates wget curl git \
4445 build-essential pkg-config \
4546 bzip2 xz-utils \
4647 libssl-dev libffi-dev zlib1g-dev \
47- libpcre3-dev \
48- # Java (Debian ships newer OpenJDK; 17 works for Gradle)
49- openjdk-17-jdk \
50- # Apache (Debian: apache2). If not needed, you can remove it.
48+ libpcre2-dev \
49+ default-jdk \
5150 apache2 \
5251 ; \
5352 rm -rf /var/lib/apt/lists/*
5453
54+
5555# ---- Python 2.7.18 (from source, as in your original) ----
5656RUN set -eux; \
5757 wget "http://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tar.xz" ; \
You can’t perform that action at this time.
0 commit comments