Skip to content

Commit

Permalink
Renamed in_docker frametree home dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Aug 1, 2024
1 parent 82e8eb0 commit c5b7384
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pydra2app/core/image/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Pydra2AppImage:
the version of the specification language used to define the image (i.e. this)
"""

IN_DOCKER_PYDRA2APP_HOME_DIR = "/pydra2app-home"
IN_DOCKER_FRAMETREE_HOME_DIR = "/frametree-home"
SPEC_VERSION = "1.0"
PIP_DEPENDENCIES = ()

Expand Down Expand Up @@ -180,8 +180,8 @@ def construct_dockerfile(
self.add_labels(dockerfile)

# Create Pydra2App Home directory
dockerfile.run(f"mkdir {self.IN_DOCKER_PYDRA2APP_HOME_DIR}")
dockerfile.env(PYDRA2APP_HOME=self.IN_DOCKER_PYDRA2APP_HOME_DIR)
dockerfile.run(f"mkdir {self.IN_DOCKER_FRAMETREE_HOME_DIR}")
dockerfile.env(FRAMETREE_HOME=self.IN_DOCKER_FRAMETREE_HOME_DIR)

return dockerfile

Expand Down

0 comments on commit c5b7384

Please sign in to comment.