12 lines
252 B
Docker
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"]
|