Skip to content

Commit

Permalink
updated env var
Browse files Browse the repository at this point in the history
  • Loading branch information
hamshkhawar committed Dec 11, 2024
1 parent 2b03c24 commit 7bda75b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion features/tabular-statistics-tool/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM polusai/bfio:2.4.5

# environment variables defined in polusai/bfio
ENV EXEC_DIR="/opt/executables"
ENV POLUS_TAB_EXT=".csv"
ENV POLUS_TAB_EXT=".arrow"
ENV POLUS_LOG="INFO"

# Work directory defined in the base container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

logger = logging.getLogger(__name__)
logger.setLevel(os.environ.get("POLUS_LOG", logging.INFO))
POLUS_TAB_EXT = os.environ.get("POLUS_TAB_EXT", ".csv")
POLUS_TAB_EXT = os.environ.get("POLUS_TAB_EXT", ".arrow")


def mean(values: list[float]) -> float:
Expand Down

0 comments on commit 7bda75b

Please sign in to comment.