Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ Pulls the image directly from Docker Hub:
docker compose --profile hub up --build
```

Or build directly:

```bash
docker build -t biopathopt:latest -f images/Dockerfile.original .
```

### 2. Build from `images/Dockerfile.cache`

Uses the cached build recipe for faster local builds. This is because the repeated
Expand All @@ -53,6 +59,7 @@ following file to generate the cache before :
docker compose --profile cache up --build
```


### 3. Build from `images/Dockerfile` with `BRENDA_FILE`

Allows you to specify which **Brenda flatfile** to include at build time. Note
Expand All @@ -68,6 +75,12 @@ docker compose --profile full up --build
BRENDA_FILE=brenda_2025_1.json docker compose --profile full up --build
```

Or build directly:

```bash
docker build -t biopathopt:cache -f images/Dockerfile.cache .
```

### Notes

- The JupyterLab server will be available at **http://localhost:8085**.
Expand Down
Loading