-
-
Save beingsane/593cc2c611fccb50cf943eb900f7f902 to your computer and use it in GitHub Desktop.
Install OpenJDK in Jessie Docker image
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 debian:jessie | |
RUN set -ex && \ | |
echo 'deb http://deb.debian.org/debian jessie-backports main' \ | |
> /etc/apt/sources.list.d/jessie-backports.list && \ | |
apt update -y && \ | |
apt install -t \ | |
jessie-backports \ | |
openjdk-8-jre-headless \ | |
ca-certificates-java -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment