繁体   English   中英

Python 脚本无法访问。Docker 图像中的 jar 文件

[英]Python script can't reach .jar file inside Docker image

我正在尝试对接我创建的一些 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;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM