gpt4 book ai didi

Python 脚本无法访问 Docker 镜像中的 .jar 文件

转载 作者:行者123 更新时间:2023-12-02 20:57:56 32 4
gpt4 key购买 nike

我正在尝试对接我创建的一些 flask 应用程序。

我需要在我创建的 Python 脚本中使用 startJVM() 访问一个 java 文件。
下面的代码在我的本地终端上运行良好,它可以检测带有“.jar”扩展名的文件的路径。
ZEMBEREK_PATH = os.path.abspath("zemberek-full.jar")startJVM(getDefaultJVMPath(), '-ea', f'-Djava.class.path={ZEMBEREK_PATH}', convertStrings=False)
但是当我在 docker 镜像中运行它时,我猜路径变量找不到扩展名为“.jar”的文件,所以程序出错了。

Traceback (most recent call last):
File "app.py", line 28, in <module>
startJVM(getDefaultJVMPath(), '-ea', f'-Djava.class.path={ZEMBEREK_PATH}', convertStrings=False)
File "/usr/local/lib/python3.7/site-packages/jpype/_core.py", line 337, in getDefaultJVMPath
return finder.get_jvm_path()
File "/usr/local/lib/python3.7/site-packages/jpype/_jvmfinder.py", line 160, in get_jvm_path
jvm = method()
File "/usr/local/lib/python3.7/site-packages/jpype/_jvmfinder.py", line 215, in _get_from_known_locations
for home in self.find_possible_homes(self._locations):
File "/usr/local/lib/python3.7/site-packages/jpype/_jvmfinder.py", line 120, in find_possible_homes
for childname in sorted(os.listdir(parent)):
FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/jvm'

我检查了 Docker 镜像中的文件。 “zemberek-full.jar”无缝包含在图像中。

您是否可以针对我遇到的这个问题提供解决方案?

我要提前感谢所有花时间解决这个问题的人。 :)

这是我的 Dockerfile
FROM python:3.7


ARG DEBIAN_FRONTED=noninteractive


RUN apt-get update && apt-get install -y --no-install-recommends apt-utils > /dev/null

RUN apt-get install -y build-essential tcl

RUN apt-get install -y systemd-sysv

RUN apt-get update > /dev/null

RUN apt-get install -y wget > /dev/null

RUN apt-get install -y zip > /dev/null

RUN apt-get install -y libaio1 > /dev/null

RUN apt-get update > /dev/null

RUN apt-get install -y alien > /dev/null

WORKDIR /

RUN mkdir /app

WORKDIR /app

COPY . .

RUN pip install -r requirements.txt

CMD ["python", "app.py"]

最佳答案

您的 Docker 实例中没有安装 JVM。将此行添加到您的 Dockerfile 以安装它:

RUN apt-get install -y openjdk-11-jdk;

关于Python 脚本无法访问 Docker 镜像中的 .jar 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61979775/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com