App Templates
Azure ACI Deployment Example
Get updates on Upcoming App Templates and Blogs
·Published Invalid Date·Updated Invalid Date·0 min read
Azure ACI Deployment Example
This repository contains an example for the tutorial: "Running Pathway Program in Azure with Azure Container Instances".
Repository Structure
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 bylaunch.py.Dockerfile: Defines the Docker image configuration, allowing the example to run in isolation.
Usage Guide
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.
Method 1: Running with Docker
- Build the Docker image:
docker build . -t pathway-azure-container-instances-example - Run the Docker container:
docker run -t pathway-azure-container-instances-example
Method 2: Running with virtualenv
- Create a virtual environment:
virtualenv venv - Activate the virtual environment:
. venv/bin/activate - Install the dependencies:
pip install -r requirements.txt - Run the script:
python launch.py
Power your RAG and ETL pipelines with Live Data