File size: 194 Bytes
b5c9938
 
 
 
 
 
 
9db57bb
1
2
3
4
5
6
7
8
FROM python:3.11
RUN apt update 
RUN apt install git
RUN git clone https://github.com/renqabs/jdvae.git /app
WORKDIR app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py"]