Add initial pipeline and build script
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
FROM python:3.11
|
||||
|
||||
# Install poetry
|
||||
ENV POETRY_VERSION=1.4.2
|
||||
ENV POETRY_HOME=/opt/poetry
|
||||
RUN curl https://install.python-poetry.org --output install-poetry.py
|
||||
RUN python3 install-poetry.py
|
||||
|
||||
COPY .cursorius/pipeline /pipeline
|
||||
WORKDIR /pipeline
|
||||
RUN $POETRY_HOME/bin/poetry config virtualenvs.in-project true
|
||||
RUN $POETRY_HOME/bin/poetry install
|
||||
|
||||
CMD ["/opt/poetry/bin/poetry", "run", "pipeline"]
|
||||
Reference in New Issue
Block a user