icu/.github
2024-09-30 13:44:26 -07:00
..
workflows ICU-22606 Create full release from CI - update icu4c 2024-09-30 13:44:26 -07:00
adaboost.json ICU-22100 Incorporate BudouX into ICU (C++) 2022-12-02 10:11:06 -08:00
data-filter.json ICU-22847 Migrate ADO pipelines to GHA 2024-09-06 11:52:01 +05:30
dependabot.yml ICU-22482 Hash-pin GHA, add dependabot to keep them updated 2024-03-20 22:14:52 -07:00
Dockerfile_fedora ICU-22606 Create full release from CI - workflow files 2024-09-30 13:44:26 -07:00
lstm_for_th_my.json ICU-21569 LSTM Part 3 Add Java implementation 2021-05-08 21:15:44 -07:00
pull_request_template.md ICU-22722 update PR template for ICU 77 2024-09-25 14:31:10 -07:00
README.md ICU-22606 Create full release from CI - review feedback 2024-09-30 13:44:26 -07:00

How to create a Fedora docker image

For the general process and concepts see: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry

For our case I replaced the generic names with our own owner / repo / names / etc.

Run

docker login ghcr.io

When prompted use these:

  • User: the github user
  • Password: the github token

Update the timestamp (20240929) with the current date, ISO style:

docker build --tag ghcr.io/unicode-org/fedora-docker-gcr:20240929 -f Dockerfile_fedora .
docker push ghcr.io/unicode-org/fedora-docker-gcr:20240929

For more info see: https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-docker-images

and: https://stackoverflow.com/questions/64033686/how-can-i-use-private-docker-image-in-github-actions

To consider: generate and publish the docker image from a GitHub action.


The DOCKER_CONTAINER_USER_NAME and DOCKER_CONTAINER_REGISTRY_TOKEN used in the action file for user and password are secrets already created.

They can be any GitHub user + token with the proper access rights. Right now this is a token of the icu-robot account.