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