This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Base image | |
| FROM ubuntu:24.04 | |
| # Set environment variables | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| # Install prerequisites and dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| wget unzip sudo openjdk-17-jdk openjdk-17-jre openjfx \ | |
| build-essential autoconf libtool automake git zip ant \ |