Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(parking-sensors): added temurin-8-jdk #645

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ RUN apt-get -y install git procps lsb-release
RUN apt-get install -y libicu[0-9][0-9]

# Install java
RUN apt-get install -y openjdk-11-jdk
ENV JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64
RUN wget -qO - https://packages.adoptium.net/artifactory/api/gpg/key/public | apt-key add -
RUN echo "deb https://packages.adoptium.net/artifactory/deb \
$(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" \
| tee /etc/apt/sources.list.d/adoptium.list
RUN apt-get update \
&& apt-get -y install --no-install-recommends \
temurin-8-jdk
StromFLIX marked this conversation as resolved.
Show resolved Hide resolved

RUN mkdir /workspace
WORKDIR /workspace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ RUN apt-get -y install git procps lsb-release
RUN apt-get install -y libicu[0-9][0-9]

# Install java
RUN apt-get install -y openjdk-11-jdk
ENV JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64
RUN wget -qO - https://packages.adoptium.net/artifactory/api/gpg/key/public | apt-key add -
RUN echo "deb https://packages.adoptium.net/artifactory/deb \
$(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" \
| tee /etc/apt/sources.list.d/adoptium.list
RUN apt-get update \
&& apt-get -y install --no-install-recommends \
temurin-8-jdk
StromFLIX marked this conversation as resolved.
Show resolved Hide resolved

RUN mkdir /workspace
WORKDIR /workspace
Expand Down