summaryrefslogtreecommitdiff
path: root/HOWTO
diff options
context:
space:
mode:
authorHenrik Nord <henrik@erlang.org>2023-03-23 07:36:37 +0100
committerGitHub <noreply@github.com>2023-03-23 07:36:37 +0100
commit5887adad95845b5bf24624215e328dcd8fa5d523 (patch)
tree9b3072b19203f1d99c0d55e0f4cb6d08f9c395a1 /HOWTO
parent8485b59d10aa4192728f0c7d1f3704357f962fd3 (diff)
parentb6bc71fb34f5c76a20bced037308ac0e3dbc4c14 (diff)
downloaderlang-5887adad95845b5bf24624215e328dcd8fa5d523.tar.gz
Merge pull request #6920 from TD5/ghcr-migration
gh: Update GitHub actions setup
Diffstat (limited to 'HOWTO')
-rw-r--r--HOWTO/DEVELOPMENT.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/HOWTO/DEVELOPMENT.md b/HOWTO/DEVELOPMENT.md
index 67f8119d17..b9be3026e1 100644
--- a/HOWTO/DEVELOPMENT.md
+++ b/HOWTO/DEVELOPMENT.md
@@ -539,7 +539,7 @@ build it locally if you want to.
Using the pre-built base you build an image like this:
```bash
-docker login docker.pkg.github.com
+docker login ghcr.io
git archive --prefix otp/ -o .github/otp.tar.gz HEAD
docker build -t my_otp_image -f .github/dockerfiles/Dockerfile.64-bit .github/
```
@@ -550,7 +550,7 @@ in order to fetch the base image. If you want to build the base image locally
you can do that like this:
```bash
-docker build -t docker.pkg.github.com/erlang/otp/ubuntu-base \
+docker build -t ghcr.io/erlang/otp/ubuntu-base \
--build-arg BASE=ubuntu:20.04 --build-arg USER=otptest --build-arg uid=$(id -u) \
--build-arg GROUP=uucp --build-arg gid=$(id -g) \
-f .github/dockerfiles/Dockerfile.ubuntu-base .github/