File size: 104 Bytes
9457143
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
FROM python:latest

COPY . /app
WORKDIR /app

RUN pip install .

CMD ["python", "-m", "diffusion.train"]