From 4e12d1e21d1231f323a242ee0c7d7cf10fcc3141 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 8 Sep 2017 12:15:59 -0400 Subject: [PATCH] Fix docs on using opm on alpine (closes #54) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e593c14..065eb90 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Starting at version 1.11.2.2, OpenResty includes a [package manager called `opm` `opm` is built in all the images except `alpine` and `stretch`. -To use `opm` in the `alpine` image, you must also install the `perl` package; it is not included by default because it doubles the image size. You may install it like so: `apk add --no-cache perl`. +To use `opm` in the `alpine` image, you must also install the `curl` and `perl` packages; they are not included by default because they double the image size. You may install them like so: `apk add --no-cache curl perl`. To use `opm` in the `stretch` image, you must also install the `openresty-opm` package as shown in [this example](https://github.com/openresty/docker-openresty/blob/master/stretch/Dockerfile.opm_example).