From e7148a5a6ec750924609c9adb2cfc35d26783a2a Mon Sep 17 00:00:00 2001 From: Gyorgy Berenyi Date: Fri, 19 Jul 2024 17:06:07 +0000 Subject: [PATCH] Update Dockerfile typo --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4594178..f3b9992 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=$BUILDPLATFORM alpine:latest ARG REDIS_VERSION="7.4.2" ARG REDIS_DOWNLOAD_URL="http://download.redis.io/releases/redis-${REDIS_VERSION}.tar.gz" -RUN wget -O redis.tar.gz "$REDIS_DOWNLOAD_URL" && \ +RUN wget -O redis.tar.gz "$REDIS_DOWNLOAD_URL" # add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added RUN addgroup -S -g 1000 redis && adduser -S -G redis -u 999 redis