File size: 131 Bytes
a6305c6
 
 
 
 
 
1
2
3
4
5
6
FROM python:3.10.9
COPY . .
WORKDIR /
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python","HelloWorld/greeter_server.py"]