nucypher/deploy/docker/rust-python
derekpierre a9e8675070
Update README for building rust-python image.
2025-09-29 10:06:58 -04:00
..
Dockerfile Use python 3.13.7 for rust-python base, and then use updated tagged rust-python image for ursula docker image build. 2025-09-29 10:02:57 -04:00
README.md Update README for building rust-python image. 2025-09-29 10:06:58 -04:00

README.md

Rust-Python CircleCI Container

Setup

# the user in the container (typically "nucypher")
# circle ci expects the user "circleci"
export DOCKER_USER=<USERNAME>

# the version of python to use
export PYTHON_VERSION=<VERSION>

Build

# pass local env vars as build args USER and VERSION
docker build -t nucypher/rust-python:$PYTHON_VERSION . \
--build-arg VERSION=$PYTHON_VERSION \
--build-arg USER=$DOCKER_USER

Push

# docker login or authentication required
docker push nucypher/rust-python:$PYTHON_VERSION