We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6d816 commit 4593297Copy full SHA for 4593297
docker/robot-javafx-demo/Dockerfile
@@ -10,7 +10,12 @@ RUN apt-get -qq update && apt-get dist-upgrade -y && apt-get install -qq --no-i
10
python-setuptools \
11
wget \
12
openjdk-8-jre \
13
- openjfx \
+ # Install older version of openjfx, current version is incompatible with openjdk8
14
+ # Bug ticket: https://bugs.launchpad.net/ubuntu/+source/openjfx/+bug/1799946
15
+ openjfx=8u161-b12-1ubuntu2 \
16
+ libopenjfx-java=8u161-b12-1ubuntu2 \
17
+ libopenjfx-jni=8u161-b12-1ubuntu2 \
18
+ openjfx-source=8u161-b12-1ubuntu2 \
19
&& apt-get clean && rm -rf /var/lib/apt/lists/*
20
21
COPY test.sh /bin/test.sh
0 commit comments