This commit is contained in:
2026-09-17 16:34:16 +03:00
parent 43f49f4b2a
commit a5011dd94b
28 changed files with 1468 additions and 0 deletions
@@ -0,0 +1,11 @@
FROM python:3.12-slim
WORKDIR /grpc-messenger
COPY client/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY client/client.py solution/client/
COPY proto solution/proto/
ENTRYPOINT ["python", "-m", "solution.client.client"]