Skip to content

Commit

Permalink
Merge pull request #115 from inab/full_circle
Browse files Browse the repository at this point in the history
Bumping to version 1.0.0rc0
  • Loading branch information
jmfernandez authored Sep 17, 2024
2 parents 571d6b0 + f6f1f08 commit 53a8030
Show file tree
Hide file tree
Showing 22 changed files with 1,029 additions and 70 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
.venv/
.py*[eE]nv/

*_dirs/

# Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
# Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ message: "If you use this software, please cite it using these metadata."
repository-code: "https://github.com/inab/WfExS-backend"
type: software
title: "WfExS-backend"
version: 1.0.0b1
version: 1.0.0rc0
date-released: "2024-08-07"
22 changes: 22 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ just using next bash pattern:
```bash
# WFEXS_VER can be either a branch, a tag or a commit hash
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b

# Alternatively, you can use local copy
WFEXS_VER=$(git rev-parse HEAD)

docker build -t inab/wfexs-backend:${WFEXS_VER} \
--build-arg wfexs_checkout="${WFEXS_VER}" \
https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
Expand All @@ -26,6 +30,10 @@ a local copy of the recipe, and next command line from the project root will hel
```bash
# WFEXS_VER can be either a branch, a tag or a commit hash
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b

# Alternatively, you can use local copy
WFEXS_VER=$(git rev-parse HEAD)

mkdir WfExS_docker_build
cd WfExS_docker_build
curl -O https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
Expand All @@ -47,8 +55,13 @@ just using next bash pattern:
```bash
# WFEXS_VER can be either a branch, a tag or a commit hash
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b

# Alternatively, you can use local copy
WFEXS_VER=$(git rev-parse HEAD)

podman build -t inab/wfexs-backend:${WFEXS_VER} \
--build-arg wfexs_checkout="${WFEXS_VER}" \
--target podman_build \
https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
```

Expand All @@ -58,12 +71,17 @@ a local copy of the recipe, and next command line from the project root will hel
```bash
# WFEXS_VER can be either a branch, a tag or a commit hash
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b

# Alternatively, you can use local copy
WFEXS_VER=$(git rev-parse HEAD)

mkdir WfExS_podman_build
cd WfExS_podman_build
curl -O https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile

podman build -t inab/wfexs-backend:${WFEXS_VER} \
--build-arg wfexs_checkout="${WFEXS_VER}" \
--target podman_build \
Dockerfile
```

Expand All @@ -89,6 +107,10 @@ The precondition is having either Apptainer or Singularity properly setup. There
```bash
# WFEXS_VER can be either a branch, a tag or a commit hash
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b
# Alternatively, you can use local copy
WFEXS_VER=$(git rev-parse HEAD)
singularity build \
--build-arg wfexs_checkout="${WFEXS_VER}" \
wfexs-backend-${WFEXS_VER}.sif container_recipes/Singularity.def
Expand Down
Loading

0 comments on commit 53a8030

Please sign in to comment.