Skip to content

Commit 04f09a1

Browse files
authored
Merge pull request #4 from keboola/feature/trigger-orchestration-on-failure-2
Feature/trigger orchestration on failure 2
2 parents ba27535 + c85227b commit 04f09a1

File tree

9 files changed

+466
-234
lines changed

9 files changed

+466
-234
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,4 @@ jobs:
223223
- name: Update developer portal properties
224224
run: |
225225
chmod +x scripts/developer_portal/*.sh
226-
scripts/developer_portal/update_properties.sh
226+
scripts/developer_portal/update_properties.sh

Dockerfile

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1-
FROM python:3.8.6-slim
2-
ENV PYTHONIOENCODING utf-8
1+
FROM python:3.12-slim
2+
ENV PYTHONIOENCODING=utf-8
3+
4+
RUN pip install flake8
5+
COPY flake8.cfg /code/flake8.cfg
6+
7+
COPY requirements.txt /code/requirements.txt
8+
RUN pip install -r /code/requirements.txt
39

410
COPY /src /code/src/
511
COPY /tests /code/tests/
612
COPY /scripts /code/scripts/
7-
COPY requirements.txt /code/requirements.txt
8-
COPY flake8.cfg /code/flake8.cfg
913
COPY deploy.sh /code/deploy.sh
1014

11-
# install gcc to be able to build packages - e.g. required by regex, dateparser, also required for pandas
12-
RUN apt-get update && apt-get install -y build-essential
13-
14-
RUN pip install flake8
15-
16-
RUN pip install -r /code/requirements.txt
17-
1815
WORKDIR /code/
19-
20-
2116
CMD ["python", "-u", "/code/src/component.py"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This application allows you to run orchestrations V2 across different Keboola Connection projects.
1+
This application allows you to run flows across different Keboola Connection projects.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Trigger to start a Keboola Orchestration V2
1+
Trigger to start a flow

0 commit comments

Comments
 (0)