diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2021-02-05 14:48:52 +0300 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2021-02-05 14:48:52 +0300 |
commit | 6dbb36a53793b920e073fc633a4e3c6bd3922b10 (patch) | |
tree | 565066d0db6c85a19801356667b7c2120e0a6864 /pkg/docker/template.Dockerfile | |
parent | bb424d97c099d072789ba1f6514098853308a888 (diff) | |
download | unit-6dbb36a53793b920e073fc633a4e3c6bd3922b10.tar.gz unit-6dbb36a53793b920e073fc633a4e3c6bd3922b10.tar.bz2 |
Docker: added curl run-time dependency.
It is needed for docker-entrypoint scripts to work.
Diffstat (limited to 'pkg/docker/template.Dockerfile')
-rw-r--r-- | pkg/docker/template.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/docker/template.Dockerfile b/pkg/docker/template.Dockerfile index d96d7982..55feecc6 100644 --- a/pkg/docker/template.Dockerfile +++ b/pkg/docker/template.Dockerfile @@ -61,7 +61,7 @@ RUN set -x \ --shell /bin/false \ unit \ && apt update \ - && apt --no-install-recommends --no-install-suggests -y install $(cat /requirements.apt) \ + && apt --no-install-recommends --no-install-suggests -y install curl $(cat /requirements.apt) \ && apt-get clean && rm -rf /var/lib/apt/lists/* \ && rm -f /requirements.apt \ && ln -sf /dev/stdout /var/log/unit.log |