https://github.com/hubmapconsortium/api-base-image
https://github.com/hubmapconsortium/api-base-image
ot2od030545
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hubmapconsortium/api-base-image
- Owner: hubmapconsortium
- Created: 2022-05-18T02:19:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-11-13T20:20:51.000Z (7 months ago)
- Last Synced: 2025-11-13T21:11:41.632Z (7 months ago)
- Topics: ot2od030545
- Language: Dockerfile
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# api-base-image
The docker image used as the base/parent image for the various HuBMAP API and UI applications. The current version is based on the RedHat Universal Base Image 10.0 with Python 3.13.9 installed.
````
docker build -t hubmap/api-base-image:1.2.0 .
````
Then publish it to the DockerHub:
````
docker login
docker push hubmap/api-base-image:1.2.0
````
To use the published image:
````
docker pull hubmap/api-base-image:1.2.0
````
In the child image Dockerfile:
```
FROM hubmap/api-base-image:1.2.0
```