read and write with readis

This commit is contained in:
root
2025-09-18 11:45:51 +02:00
committed by Magel, Denis
parent cf09ba6431
commit 22419ecf84
5 changed files with 113 additions and 21 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"]