-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of the Workflow Update feature
- Loading branch information
1 parent
97814c2
commit 2c15ed3
Showing
25 changed files
with
2,078 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM python:3.10 | ||
|
||
RUN python -m pip install --upgrade wheel "poetry==1.3.2" poethepoet | ||
VOLUME ["/api_new", "/bridge_new"] | ||
|
||
COPY ./ ./ | ||
|
||
RUN mkdir -p ./temporalio/api | ||
RUN poetry install --no-root -E opentelemetry | ||
RUN poetry add "protobuf<4" | ||
RUN poe gen-protos | ||
|
||
CMD cp -r ./temporalio/api/* /api_new && cp -r ./temporalio/bridge/proto/* /bridge_new |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.git/ | ||
.idea/ | ||
.mypy_cache/ | ||
.pytest_cache/ | ||
.venv/ | ||
build/ | ||
dist/ | ||
temporalio/api/ | ||
temporalio/bridge/**/target/ | ||
temporalio/bridge/**/*.so | ||
Dockerfile |
Oops, something went wrong.