summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 03:01:24 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 03:01:24 +0000
commitbbbba88cf6eb914c53ace70a32ed8874d5e600c2 (patch)
tree97210524cb84512c477421e1950f2c6f7e1a3089 /Dockerfile
parentInitial commit. (diff)
downloadiredis-bbbba88cf6eb914c53ace70a32ed8874d5e600c2.tar.xz
iredis-bbbba88cf6eb914c53ace70a32ed8874d5e600c2.zip
Adding upstream version 1.14.1.upstream/1.14.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..a0baf16
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,16 @@
+FROM redis/redis-stack-server:latest
+
+COPY . /iredis
+
+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
+
+CMD ["sh", "-c", "/opt/redis-stack/bin/redis-stack-server --daemonize yes && iredis"]