train-flux-lora-ease / Dockerfile
DevWild's picture
Create Dockerfile
d068841 verified
raw
history blame
121 Bytes
FROM python:3.9
WORKDIR /code
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "script.py"]