Adds jdk 11
This commit is contained in:
parent
35d7adc00f
commit
088014db3a
4 changed files with 46 additions and 1 deletions
16
java/11/Dockerfile
Normal file
16
java/11/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM git.zontreck.com/ariascreations/yolks:debian
|
||||
|
||||
LABEL type="OpenJDK 11"
|
||||
|
||||
USER root
|
||||
RUN apt-get install -y curl lsof ca-certificates openssl git tar sqlite3 fontconfig tzdata iproute2 libfreetype6 zip unzip
|
||||
|
||||
# Install OpenJDK 8
|
||||
RUN apt-get install -y openjdk-11-jdk
|
||||
|
||||
USER container
|
||||
COPY --chown=container:container ./entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/bin/bash", "-c", "--"]
|
||||
CMD ["/entrypoint.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue