Skip to content

Commit fdbae66

Browse files
deian 13
1 parent a7e51e7 commit fdbae66

File tree

1 file changed

+4
-4
lines changed
  • instrumentation/otel-webserver-module/docker/almalinux8

1 file changed

+4
-4
lines changed

instrumentation/otel-webserver-module/docker/almalinux8/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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) ----
3939
ENV DEBIAN_FRONTEND=noninteractive
40+
4041
RUN 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) ----
5656
RUN set -eux; \
5757
wget "http://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tar.xz"; \

0 commit comments

Comments
 (0)