Update Dockerfile
Some checks failed
continuous-integration/drone/push Build is failing

typo
This commit is contained in:
Gyorgy Berenyi
2024-07-19 17:06:07 +00:00
parent f739d22f2a
commit e7148a5a6e

View File

@@ -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