read and write with readis

This commit is contained in:
root
2025-09-18 11:45:51 +02:00
parent 1eac2e75ae
commit 8ac82369f5
5 changed files with 126 additions and 4 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:latest
WORKDIR /usr/local/bin
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY src/start.py .
CMD ["src/start.py"]