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
| FROM ubuntu:24.04 | |
| ENV TLA_HOME=/opt/tla \ | |
| PATH=$PATH:/opt/tla | |
| RUN apt-get update && apt-get install -y \ | |
| default-jre \ | |
| curl \ | |
| && rm -rf /var/lib/apt/lists/* |