Skip to content

Commit e117701

Browse files
authored
fix: /app/extproc-server: /lib64/libc.so.6: version GLIBC_2.39 not found (#551)
Signed-off-by: carlory <[email protected]>
1 parent 585e13d commit e117701

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/centos/centos:stream9
1+
FROM quay.io/centos/centos:stream10
22

33
RUN dnf -y update && \
44
dnf -y install epel-release && \
@@ -32,7 +32,7 @@ RUN ARCH=$(uname -m) && \
3232
curl -OL https://github.com/envoyproxy/envoy/releases/download/v${ENVOY_VERSION}/envoy-${ENVOY_VERSION}-linux-${ENVOY_ARCH} && \
3333
chmod +x envoy-${ENVOY_VERSION}-linux-${ENVOY_ARCH} && \
3434
mv envoy-${ENVOY_VERSION}-linux-${ENVOY_ARCH} /usr/local/bin/envoy
35-
35+
3636
# Install Golang
3737
ENV GOLANG_VERSION=1.24.1
3838
RUN ARCH=$(uname -m) && \

Dockerfile.extproc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ RUN mkdir -p bin && cd src/semantic-router && \
8282
go build -ldflags="-w -s" -o ../../bin/router cmd/main.go
8383

8484
# Final stage: copy the binary and the shared library
85-
FROM quay.io/centos/centos:stream9
85+
FROM quay.io/centos/centos:stream10
8686

8787
WORKDIR /app
8888

Dockerfile.extproc.cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ RUN mkdir -p bin && cd src/semantic-router && \
212212
fi
213213

214214
# Final stage: copy the binary and the shared library
215-
FROM quay.io/centos/centos:stream9
215+
FROM quay.io/centos/centos:stream10
216216

217217
# Install OpenSSL runtime libraries
218218
RUN dnf update -y && \

website/docs/troubleshooting/network-tips.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ When building `Dockerfile.extproc`, the Go stage may hang on `proxy.golang.org`.
7575
```Dockerfile
7676
# syntax=docker/dockerfile:1
7777
78-
FROM rust:1.85 AS rust-builder
78+
FROM rust:1.90 AS rust-builder
7979
RUN apt-get update && apt-get install -y make build-essential pkg-config && rm -rf /var/lib/apt/lists/*
8080
WORKDIR /app
8181
COPY tools/make/ tools/make/
@@ -106,7 +106,7 @@ ENV CGO_ENABLED=1
106106
ENV LD_LIBRARY_PATH=/app/candle-binding/target/release
107107
RUN mkdir -p bin && cd src/semantic-router && go build -o ../../bin/router cmd/main.go
108108
109-
FROM quay.io/centos/centos:stream9
109+
FROM quay.io/centos/centos:stream10
110110
WORKDIR /app
111111
COPY --from=go-builder /app/bin/router /app/extproc-server
112112
COPY --from=go-builder /app/candle-binding/target/release/libcandle_semantic_router.so /app/lib/

0 commit comments

Comments
 (0)