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