We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3194fe4 commit 55cf00dCopy full SHA for 55cf00d
1 file changed
docker/build_container.py
@@ -21,7 +21,7 @@ def fetch_dataset():
21
22
def build_container():
23
print(f"Building Docker image '{IMAGE_NAME}'...")
24
- subprocess.run(["docker", "build", "-t", IMAGE_NAME, DOCKER_DIR], check=True)
+ subprocess.run(["docker", "build", "--no-cache", "-t", IMAGE_NAME, DOCKER_DIR], check=True)
25
print("Docker build completed.\n")
26
27
os.makedirs(RESOURCES_DIR, exist_ok=True)
0 commit comments