Installation¶
The Workflow package is available on PyPI and can be installed using pip
or added to a Poetry project. Additionally, the Workflow package is available as a container image on Docker Hub.
pip¶
To install the Workflow package from PyPI, run:
Add to Poetry Project¶
To add the Workflow package to your Poetry project, run:
Get Source Code¶
To get the source code of the Workflow package, run:
Container Image¶
To setup the Workflow in a container image, it is recommended to set the workflow set workspace
command during the container build process. For example, in a Dockerfile:
Docker
FROM python:3.10-slim-buster
RUN set -ex \
pip install workflow.core && \
workflow workspace set development
Alternatively, you can use the workflow
container image from Docker Hub:
and base your container image on it: