examples/projects/azure-aci-deploy/README.md
This repository contains an example for the tutorial: "Running Pathway Program in Azure with Azure Container Instances".
The repository includes the following key files:
launch.py: A Python script responsible for deploying a Docker image in Azure Container Instances.requirements.txt: A list of Python dependencies required by launch.py.Dockerfile: Defines the Docker image configuration, allowing the example to run in isolation.Before running the example, update the constants in launch.py with the necessary values.
You can run the example using one of two methods: Docker or virtualenv.
docker build . -t pathway-azure-container-instances-example
docker run -t pathway-azure-container-instances-example
virtualenv venv
. venv/bin/activate
pip install -r requirements.txt
python launch.py