mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
optimize redis Dockerfile
Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
parent
844382d220
commit
e4648ab03e
1 changed files with 4 additions and 5 deletions
|
|
@ -1,13 +1,12 @@
|
||||||
# From https://github.com/docker-library/redis/blob/master/7.0/alpine/Dockerfile
|
# From https://github.com/docker-library/redis/blob/master/7.0/alpine/Dockerfile
|
||||||
FROM redis:7.0.11-alpine
|
FROM redis:7.0.11-alpine
|
||||||
|
|
||||||
RUN apk add --no-cache openssl bash
|
COPY --chmod=775 start.sh /usr/bin/start.sh
|
||||||
|
|
||||||
COPY start.sh /usr/bin/
|
|
||||||
RUN chmod +x /usr/bin/start.sh
|
|
||||||
|
|
||||||
|
RUN apk add --no-cache openssl bash; \
|
||||||
|
\
|
||||||
# Give root a random password
|
# Give root a random password
|
||||||
RUN echo "root:$(openssl rand -base64 12)" | chpasswd
|
echo "root:$(openssl rand -base64 12)" | chpasswd
|
||||||
|
|
||||||
USER redis
|
USER redis
|
||||||
ENTRYPOINT ["start.sh"]
|
ENTRYPOINT ["start.sh"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue