Skip to content
Snippets Groups Projects
Commit 322ed7d3 authored by TYLER CARAZA-HARTER's avatar TYLER CARAZA-HARTER
Browse files

lec 07 starter code

parent 2e2f3b0d
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:24.04
RUN apt-get update && apt-get install -y python3 python3-pip iproute2
RUN pip3 install grpcio-tools==1.70.0 grpcio==1.70.0 protobuf==5.29.3 --break-system-packages
COPY requirements.txt /requirements.txt
RUN pip3 install -r /requirements.txt --break-system-packages
COPY *.py /
CMD ["python3", "/server.py"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment