8 lines
160 B
Docker
8 lines
160 B
Docker
FROM python:3.11
|
|
|
|
RUN pip install git+https://git.ohea.xyz/cursorius/pipeline-api#subdirectory=python
|
|
|
|
COPY .cursorius/build.py /
|
|
CMD ["python3", "/build.py"]
|
|
|