You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I build jre8 image base on jeanblanchard/alpine-glibc
build success , but when i run it , there are error messages:
Error relocating /usr/java/jre1.8.0_251/lib/amd64/jli/libjli.so: __strdup: symbol not found
Error relocating /usr/java/jre1.8.0_251/lib/amd64/jli/libjli.so: __rawmemchr: symbol not found
I build jre8 image base on jeanblanchard/alpine-glibc
build success , but when i run it , there are error messages:
Error relocating /usr/java/jre1.8.0_251/lib/amd64/jli/libjli.so: __strdup: symbol not found
Error relocating /usr/java/jre1.8.0_251/lib/amd64/jli/libjli.so: __rawmemchr: symbol not found
this is my dockerfile
FROM jeanblanchard/alpine-glibc
WORKDIR /usr/java/jdk
ADD jre8.tar.gz /usr/java/
RUN apk add -U tzdata && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && rm -rf /var/cache/apk/*
ENV JAVA_HOME /usr/java/jre1.8.0_251
ENV PATH ${PATH}:${JAVA_HOME}/bin
The text was updated successfully, but these errors were encountered: