mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 15:02:57 +00:00
Build contributed recipes on aarch64 (#1974)
* Build contributed recipes on aarch64 * Add --pull to contributed recipes * Exclude recipe not working on aarch64
This commit is contained in:
@@ -10,7 +10,11 @@ THIS_DIR = Path(__file__).parent.resolve()
|
||||
|
||||
def generate_matrix() -> dict[str, Any]:
|
||||
dockerfiles = sorted(file.name for file in THIS_DIR.glob("*.dockerfile"))
|
||||
return {"dockerfile": dockerfiles}
|
||||
return {
|
||||
"dockerfile": dockerfiles,
|
||||
"runsOn": ["ubuntu-latest", "ARM64"],
|
||||
"exclude": [{"dockerfile": "oracledb.dockerfile", "runsOn": "ARM64"}],
|
||||
}
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
@@ -502,6 +502,10 @@ Pre-built images are hosted in the [realiserad/jupyter-docker-mssql](https://git
|
||||
|
||||
## Add Oracle SQL Instant client, SQL\*Plus and other tools (Version 21.x)
|
||||
|
||||
```{note}
|
||||
This recipe only works for x86_64 architecture.
|
||||
```
|
||||
|
||||
The following recipe demonstrates how to add functionality to connect to a Oracle Database using [Oracle Instant Client](https://www.oracle.com/database/technologies/instant-client.html)
|
||||
in your notebook.
|
||||
This recipe installs version `21.11.0.0.0`.
|
||||
|
Reference in New Issue
Block a user