resume-worth / build_docker_image.sh
Luis Rodrigues
first operational version using llmware
9d471ed
raw
history blame
No virus
329 Bytes
#!/bin/bash
# Navigate to the directory containing the Dockerfile
cd .
# Build the Docker image
docker build -t resume-worth:latest . --build-arg REQUIREMENTS_PATH="./requirements.in"
# Check if the image was created successfully
docker images | grep resume-worth
# Run docker image
# docker run -it -p 7860:7860 resume-worth