Skip to content

Commit 53a8030

Browse files
authored
Merge pull request #115 from inab/full_circle
Bumping to version 1.0.0rc0
2 parents 571d6b0 + f6f1f08 commit 53a8030

22 files changed

+1029
-70
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
.venv/
44
.py*[eE]nv/
55

6+
*_dirs/
7+
68
# Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
79
# Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks
810

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ message: "If you use this software, please cite it using these metadata."
2727
repository-code: "https://github.com/inab/WfExS-backend"
2828
type: software
2929
title: "WfExS-backend"
30-
version: 1.0.0b1
30+
version: 1.0.0rc0
3131
date-released: "2024-08-07"

INSTALL.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ just using next bash pattern:
1515
```bash
1616
# WFEXS_VER can be either a branch, a tag or a commit hash
1717
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b
18+
19+
# Alternatively, you can use local copy
20+
WFEXS_VER=$(git rev-parse HEAD)
21+
1822
docker build -t inab/wfexs-backend:${WFEXS_VER} \
1923
--build-arg wfexs_checkout="${WFEXS_VER}" \
2024
https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
@@ -26,6 +30,10 @@ a local copy of the recipe, and next command line from the project root will hel
2630
```bash
2731
# WFEXS_VER can be either a branch, a tag or a commit hash
2832
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b
33+
34+
# Alternatively, you can use local copy
35+
WFEXS_VER=$(git rev-parse HEAD)
36+
2937
mkdir WfExS_docker_build
3038
cd WfExS_docker_build
3139
curl -O https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
@@ -47,8 +55,13 @@ just using next bash pattern:
4755
```bash
4856
# WFEXS_VER can be either a branch, a tag or a commit hash
4957
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b
58+
59+
# Alternatively, you can use local copy
60+
WFEXS_VER=$(git rev-parse HEAD)
61+
5062
podman build -t inab/wfexs-backend:${WFEXS_VER} \
5163
--build-arg wfexs_checkout="${WFEXS_VER}" \
64+
--target podman_build \
5265
https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
5366
```
5467

@@ -58,12 +71,17 @@ a local copy of the recipe, and next command line from the project root will hel
5871
```bash
5972
# WFEXS_VER can be either a branch, a tag or a commit hash
6073
WFEXS_VER=8a0a980f1a5e69064d16f89f8ec31973b2eb0c8b
74+
75+
# Alternatively, you can use local copy
76+
WFEXS_VER=$(git rev-parse HEAD)
77+
6178
mkdir WfExS_podman_build
6279
cd WfExS_podman_build
6380
curl -O https://raw.githubusercontent.com/inab/WfExS-backend/${WFEXS_VER}/container_recipes/Dockerfile
6481

6582
podman build -t inab/wfexs-backend:${WFEXS_VER} \
6683
--build-arg wfexs_checkout="${WFEXS_VER}" \
84+
--target podman_build \
6785
Dockerfile
6886
```
6987

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

0 commit comments

Comments
 (0)