Skip to content

Releasing

Simon Warta edited this page Nov 18, 2022 · 12 revisions
  1. Update DOCKER_TAG in Makefile
  2. Build to create a local tag.
    • If you are on an Intel machine, use make build to build the official version.
    • If not, you can use make build-x86_64 to force a non-native Intel build: This takes a long time and requires 25 GB of memory for Docker (check docker system info | grep -i memory).
  3. Test the new image locally.
  4. Update and commit the new version in Makefile, CHANGELOG.md and README.md to the new version.
  5. Use make publish-x86_64 to publish the Intel/AMD version.
  6. Optionally, use make publish-arm64 to build and publish the unofficial ARM version (can take a long time to build, on an Intel machine).
  7. git tag v<new version number>
  8. git push && git push --tags
Clone this wiki locally