Browse Source

CI: install JDK before building JNIAdapter

JNI-129
Devan Carpenter 4 years ago
parent
commit
f2093047b5
No known key found for this signature in database GPG Key ID: E1707CFFD7B85A02
  1. 6
      scripts/debian10/pEpJNIAdapter.debian10.Dockerfile

6
scripts/debian10/pEpJNIAdapter.debian10.Dockerfile

@ -8,6 +8,12 @@ ENV BUILDROOT /build
ENV INSTPREFIX /install
ENV OUTDIR /out
### Install system dependencies
USER root
RUN apt-get update -yqq && \
apt-get install -yqq default-jdk-headless
USER pep-builder
### Setup working directory
RUN mkdir ${BUILDROOT}/pEpJNIAdapter
COPY . ${BUILDROOT}/pEpJNIAdapter

Loading…
Cancel
Save