Rewrite APT sources to HTTPS.

Also, use consistent docker image naming.

See #2173
This commit is contained in:
Mark Paluch
2021-09-27 08:42:40 +02:00
parent 905492ede1
commit 8136f58971

View File

@@ -1,14 +0,0 @@
# 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 ; \
make work/redis/bin/redis-cli work/redis/bin/redis-server REDIS_VERSION=6.2.4; \
chmod -R o+rw work; \
apt-get clean; \
rm -rf /var/lib/apt/lists/*;