Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically publish conatiner image
This patch adds a `Dockerfile` and a GitHub Actions workflow to automatically build and publish container images for every branch and pull request. If the source is a pull request, the workflow will also add a comment to explain how this can be used to easily test this pull reqzest: > Use `docker` or `podman` to test this pull request locally. > > Local test with mock data > ``` > podman run --rm -it -p 127.0.0.1:3000:3000 ghcr.io/lkiesow/opencast-admin-interface:pr-5 > ``` > > Proxy data from develop.opencast.org > ``` > podman run --rm -it -p 127.0.0.1:3000:3000 -e PROXY_TARGET=https://develop.opencast.org ghcr.io/lkiesow/opencast-admin-interface:pr-5 > ``` > > It may take a few seconds for the interface to spin up. > It will then be available at https://127.0.0.1:3000.
- Loading branch information