Add comments to Dockerfile to trigger Docker Image creation with JDK 17 and Redis 6.2.

This is necesarry in order to produce Spring Data Redis 3.0.0-SNAPSHOTs.

Thus far, the Jenkins CI build for 3.0.x is failing due to (from build #1):

"19:18:16  Stage "Publish JDK 17 + Redis 6.2 Docker image" skipped due to when conditional"

Closes #2173.
This commit is contained in:
John Blum
2021-09-26 19:51:11 -07:00
committed by Mark Paluch
parent 9d0550a9e2
commit 905492ede1

View File

@@ -1,8 +1,10 @@
# Custom OpenJDK 17 Docker Image
FROM openjdk:17-bullseye
# Copy Spring Data Redis's Makefile into the container
COPY ./Makefile /
# Install Redis 6.2
RUN set -eux; \
apt-get update ; \
apt-get install -y build-essential ; \