Evan

Results 116 comments of Evan

Hmmmm... I'm trying this and it is OK? ``` docker pull openresty/openresty:1.17.8.2-0-centos docker run --rm openresty/openresty:1.17.8.2-0-centos ```

Thanks for your suggestion and your demonstration. We used to use `ENTRYPOINT`, but then a user suggested using `CMD`. See #51 and #52. It seems like it could go both...

Sorry I missed this. I think it makes sense and will address it this month

I could see how that is useful. I don't have time to work on this myself, but would check out PRs.

@AlecHFerguson Thanks for your pull request. I think it does make sense to add this specific testing package, even though the other distros don't include it (e.g. `stretch` could also...

Following what you have, I don't get a clean build: ``` ! Installing the dependencies failed: Module 'LWP::UserAgent' is not installed, Module 'List::MoreUtils' is not installed ! Bailing out the...

After looking at what it is (and seeing that @agentzh recommends it), I think using `cpanminus` is OK. I would prefer to install it from cpan than a convenience URL...

@AlecHFerguson Does that `/root/.cpan` directory have anything needed for normal operation of CPAN packages? I later thought maybe just the `/root/.cpan/build` folder was OK to delete. Could you run test...

Here's how to self-service what contents are at that layer: ``` # clone docker-openresty git clone https://github.com/openresty/docker-openresty.git cd docker-openresty # build without removing intermediate layers docker build -f alpine/Dockerfile --rm=false...