Michael Hoennig
c181500a1d
Co-authored-by: Michael Hoennig <michael@hoennig.de> Co-authored-by: Michael Hönnig <michael@hoennig.de> Reviewed-on: #114 Reviewed-by: Timotheus Pokorra <timotheus.pokorra@hostsharing.net>
11 lines
235 B
Docker
11 lines
235 B
Docker
FROM eclipse-temurin:21-jdk
|
|
RUN apt-get update && \
|
|
apt-get install -y bind9-utils && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
# RUN mkdir /opt/app
|
|
# COPY japp.jar /opt
|
|
# CMD ["java", "-jar", "/opt/app/japp.jar"]
|