Container images are automatically published to this repository's GitHub Packages registry.
All these containers expect the repository root as their build context, i.e.
the positional parameter you pass when building with podman
/docker
.
An example (with $PWD
being the parent directory to this one):
podman build -f containers/alpine/Dockerfile .
Another example (passing the repository URL as context):
podman build -f containers/alpine/Dockerfile https://github.com/unioslo/tsd-file-api.git
Production ready service container using that is using
docker.io/python:3-slim
as its base image.
Production ready service container using that is using
docker.io/python:3-alpine
as its base
image.
Builds an RPM of this package and all its (Python) dependencies on CentOS 7, for deployment in RHEL7-like environments.
Builds an RPM of this package and all its (Python) dependencies on Rocky Linux (default: 8), for deployment in RHEL-like environments.
Installs all of the package's dependencies, including development dependencies, except for the tsdfileapi package itself (before runtime). Intended for use in running the package's test suite and local development.