7 lines
195 B
Docker
7 lines
195 B
Docker
FROM redis:8.6.1
|
|
|
|
RUN apt update && apt install -y --no-install-recommends gettext && apt clean && rm -rf /var/lib/apt/lists/*
|
|
ADD ./entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|