Skip to content

Commit

Permalink
add path import and fix dockerfile name in core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leahh committed Oct 10, 2024
1 parent 0a58cfa commit 65ae332
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beeflow/client/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import datetime
import time
import importlib.metadata
from pathlib import Path

import daemon
import typer
Expand Down Expand Up @@ -598,7 +599,7 @@ def pull_deps(outdir: str = typer.Option('.', '--outdir', '-o',
"""Pull required BEE containers and store in outdir."""
load_check_charliecloud()
neo4j_path = os.path.join(os.path.realpath(outdir), 'neo4j.tar.gz')
neo4j_dockerfile = str(Path(REPO_PATH, "beeflow/data/dockerfiles/apoc_neo4j"))
neo4j_dockerfile = str(Path(REPO_PATH, "beeflow/data/dockerfiles/Dockerfile.apoc_neo4j"))
build_to_tar('apoc_neo4j', neo4j_dockerfile, neo4j_path)
redis_path = os.path.join(os.path.realpath(outdir), 'redis.tar.gz')
pull_to_tar('redis', redis_path)
Expand Down

0 comments on commit 65ae332

Please sign in to comment.