summaryrefslogtreecommitdiff
path: root/HOWTO/DEVELOPMENT.md
diff options
context:
space:
mode:
Diffstat (limited to 'HOWTO/DEVELOPMENT.md')
-rw-r--r--HOWTO/DEVELOPMENT.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/HOWTO/DEVELOPMENT.md b/HOWTO/DEVELOPMENT.md
index 2220d9ab71..b9be3026e1 100644
--- a/HOWTO/DEVELOPMENT.md
+++ b/HOWTO/DEVELOPMENT.md
@@ -1,7 +1,7 @@
# Developing Erlang/OTP
The Erlang/OTP development repository is quite large and the make system
-contains a lot of functionality to help when a developing. This howto
+contains a lot of functionality to help when developing. This howto
will try to showcase the most important features of the make system.
The guide is mostly aimed towards development on a Unix platform, but
@@ -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,8 +550,8 @@ in order to fetch the base image. If you want to build the base image locally
you can do that like this:
```bash
-docker built -t docker.pkg.github.com/erlang/otp/ubuntu-base \
- --build-arg BASE=ubuntu --build-arg USER=otptest --build-arg uid=$(id -u) \
+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/
```