Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 721 Bytes

without-network-volume.md

File metadata and controls

27 lines (20 loc) · 721 Bytes

Building the Worker without a Network Volume

This is the simpler option. No network volume is required. The entire application will be stored within the Docker image but will obviously create a more bulky Docker image as a result.

You can either use my pre-built Docker image:

ashleykza/runpod-worker-llava:standalone-1.0.5

Or alternatively, you can build it yourself by following the instructions below.

Clone the repo

git clone https://github.com/ashleykleynhans/runpod-worker-llava.git

Build the Docker image

docker build -t dockerhub-username/runpod-worker-llava:1.0.0 -f Dockerfile.Standalone .
docker login
docker push dockerhub-username/runpod-worker-llava:1.0.0