diff --git a/docker/deb.Dockerfile b/docker/deb.Dockerfile index b35383149..171788d51 100644 --- a/docker/deb.Dockerfile +++ b/docker/deb.Dockerfile @@ -14,7 +14,7 @@ RUN echo "deb [arch=amd64] http://repo.nimiq.com/deb stable main" > /etc/apt/sou # Install nimiq and tini RUN apt-get update \ - && apt-get --no-install-recommends -y install nimiq tini \ + && apt-get --no-install-recommends -y install nimiq tini curl \ && rm -rf /var/lib/apt/lists/* # We're going to execute nimiq in the context of its own user, what else? diff --git a/docker/git.Dockerfile b/docker/git.Dockerfile index 5946d239c..64cb59593 100644 --- a/docker/git.Dockerfile +++ b/docker/git.Dockerfile @@ -47,7 +47,7 @@ FROM node:18-bookworm-slim # Install tini - a tiny init for containers RUN apt-get update \ - && apt-get --no-install-recommends -y install tini \ + && apt-get --no-install-recommends -y install tini curl \ && rm -rf /var/lib/apt/lists/* # We're going to execute nimiq in the context of its own user, what else? diff --git a/docker/local.Dockerfile b/docker/local.Dockerfile index d7c9eed5d..dce4018bb 100644 --- a/docker/local.Dockerfile +++ b/docker/local.Dockerfile @@ -45,7 +45,7 @@ FROM node:18-bookworm-slim # Install tini - a tiny init for containers RUN apt-get update \ - && apt-get --no-install-recommends -y install tini \ + && apt-get --no-install-recommends -y install tini curl \ && rm -rf /var/lib/apt/lists/* # We're going to execute nimiq in the context of its own user, what else?