File size: 299 Bytes
6628f79 76d0080 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash
# Copyright 2026 Ankur Sinha
# Author: Ankur Sinha <sanjay DOT ankur AT gmail DOT com>
# File :
#
timestamp="$(date +%Y%m%d%H%M)"
echo "Building new image"
# DOCKER_BUILDKIT=1 docker build --no-cache --tag klea_rag:latest .
DOCKER_BUILDKIT=1 docker build --tag klea_rag:latest .
|