This file contains 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 debian:10-slim | |
## Otherwise Java won't install | |
RUN mkdir -p /usr/share/man/man1 | |
RUN apt-get update \ | |
&& apt-get install -y gnupg2 | |
## This is to get openjdk-11-jre to install on -slim | |
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EA8CACC073C3DB2A |