gtpv4 / Dockerfile
rr1's picture
Create Dockerfile
2da91ea verified
raw
history blame contribute delete
194 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/renqabs/gtpv4.git /app
WORKDIR app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py"]