Files
John Blum 5996078fe5 Test against Java 21 in CI.
See #2602
Original pull request: #2608
2023-07-13 10:55:55 +02:00

17 lines
440 B
Docker

ARG BASE
FROM ${BASE}
# Any ARG statements before FROM are cleared.
ARG REDIS
# Copy Spring Data Redis's Makefile into the container
COPY ./Makefile /
RUN set -eux; \
# sed -i -e 's/http/https/g' /etc/apt/sources.list ; \
apt-get update ; \
apt-get install -y build-essential ; \
make work/redis/bin/redis-cli work/redis/bin/redis-server REDIS_VERSION=${REDIS}; \
chmod -R o+rw work; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*;