Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

update dockerfile base to openjdk 11 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM ubuntu:18.04
# upgrade
RUN apt-get update && apt upgrade -y && rm -rf /var/lib/apt/lists/*

# install stuff that is in openjdk-8-jdk but not ubuntu:18.04
RUN apt-get update && apt-get install -y gpg openjdk-8-jdk && rm -rf /var/lib/apt/lists/*
# install stuff that is in openjdk-11-jdk but not ubuntu:18.04
RUN apt-get update && apt-get install -y gpg openjdk-11-jdk && rm -rf /var/lib/apt/lists/*

RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*

Expand Down