Files
hse-2026/homework/02-grpc-messenger/templates/messenger-py/client.dockerfile
T
2026-09-17 16:34:16 +03:00

12 lines
252 B
Docker

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"]