Allow you to create your own promptflow python base images
Project description
Promptflow python image bundle
This bundle package provides a way to use your own base images to build and run promptflow-python, and build high-quality LLM apps with prompt flow package.
Example usage:
# Choose different python base image
FROM python:3.11
# Required: install runit and procps
RUN apt-get update && apt-get install -y runit procps \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install promptflow-python-bundle
RUN pip install -U promptflow-python-bundle
# Install promptflow to ensure forward compatibility. It will be phased out in the future.
RUN pip install promptflow
# Set port
ENV PORT 8000
EXPOSE $PORT
CMD ["pfapp"]
Currently, we only support Ubuntu
and Debian
based images, and have verified both AzureML base images
and popular images like ubuntu:22.04
, debian:11
, python:3.10
, continuumio/miniconda3:23.3.1-0
, nginx:stable
, etc.
If your base images doesn't have Python or Conda, you need to install it in you docker file as a prerequisite.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for promptflow_python_bundle-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b593dba3e0e0a9bc52632dfd276827bcc5048eab3ad7b0a5de0aa0a4c8b95d2 |
|
MD5 | 28c6062e7c5d018c6014480183a5aa0b |
|
BLAKE2b-256 | 10d65d65c0662316293378f86ae9f67fb15fe198f9e264a9a3d7e2a3c7f10f6a |