jan/jan-inference/sd/compile.Dockerfile
2023-08-25 01:31:11 +07:00

11 lines
175 B
Docker

FROM python:3.9.17
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
ENV PATH=/root/.cargo/bin:$PATH
WORKDIR /sd.cpp
COPY . .
RUN pip install -r compile.requirements.txt