From 08253e8a97ee4d973e5156848ea199f7b7083b3a Mon Sep 17 00:00:00 2001 From: restitux Date: Fri, 24 Feb 2023 22:11:08 -0700 Subject: [PATCH] Fixed dockerfile copy path --- .cursorius/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cursorius/Dockerfile b/.cursorius/Dockerfile index 4144116..2aa1a6c 100644 --- a/.cursorius/Dockerfile +++ b/.cursorius/Dockerfile @@ -2,6 +2,6 @@ FROM python:3.11 RUN pip install git+https://git.ohea.xyz/cursorius/pipeline-api#subdirectory=python -COPY build.py / +COPY .cursorius/build.py / CMD ["python3", "/build.py"]