Skip to content

Commit 55cf00d

Browse files
committed
docker build no cache to update pysymgym
1 parent 3194fe4 commit 55cf00d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/build_container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def fetch_dataset():
2121

2222
def build_container():
2323
print(f"Building Docker image '{IMAGE_NAME}'...")
24-
subprocess.run(["docker", "build", "-t", IMAGE_NAME, DOCKER_DIR], check=True)
24+
subprocess.run(["docker", "build", "--no-cache", "-t", IMAGE_NAME, DOCKER_DIR], check=True)
2525
print("Docker build completed.\n")
2626

2727
os.makedirs(RESOURCES_DIR, exist_ok=True)

0 commit comments

Comments
 (0)