-
Notifications
You must be signed in to change notification settings - Fork 14
/
batfish.dockerfile
33 lines (29 loc) · 1023 Bytes
/
batfish.dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM ubuntu:24.04
# ASSETS is the directory containing allinone-bundle.jar (the Batfish jar)
# and questions/ directory (containing question templates to be loaded by Batfish)
ARG ASSETS
# Make /data dir available to any user, so this container can be run by any user
RUN mkdir -p /data
RUN chmod a+rw /data
COPY ${ASSETS} ./
ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64/
ENV JAVA_LIBRARY_PATH=/usr/lib
ENV HOME=/data
# Base package setup
RUN apt-get update \
&& apt-get install -y openjdk-17-jre-headless \
&& apt-get upgrade -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/cache/oracle*
# Batfish
EXPOSE 9996
CMD ["java", \
"-XX:-UseCompressedOops", \
"-XX:+UseContainerSupport", \
"-XX:MaxRAMPercentage=80", \
"-cp", "allinone-bundle.jar", \
"-Dlog4j.configurationFile=log4j2.yaml", \
"org.batfish.allinone.Main", \
"-runclient", "false", \
"-loglevel", "warn", \
"-coordinatorargs", "-templatedirs questions -containerslocation /data/containers"]