2025-02-09 17:22:03 +01:00
|
|
|
FROM redis/redis-stack-server:latest
|
2025-02-09 16:57:44 +01:00
|
|
|
|
2025-02-09 17:22:03 +01:00
|
|
|
COPY . /iredis
|
2025-02-09 16:57:44 +01:00
|
|
|
|
2025-02-09 17:22:03 +01:00
|
|
|
RUN apt-get update --fix-missing
|
|
|
|
RUN apt-get install -yqq python3 python3-pip python-is-python3
|
|
|
|
RUN python3 -m pip install poetry
|
|
|
|
WORKDIR /iredis
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
RUN poetry build
|
|
|
|
RUN pip install dist/iredis*.tar.gz
|
|
|
|
WORKDIR /
|
|
|
|
RUN rm -rf .cache /var/cache/apt
|
|
|
|
RUN rm -rf /iredis
|
2025-02-09 16:57:44 +01:00
|
|
|
|
2025-02-09 17:22:03 +01:00
|
|
|
CMD ["sh", "-c", "/opt/redis-stack/bin/redis-stack-server --daemonize yes && iredis"]
|