From 7b559991c7370659f7a47fa4503ffc4f08d3109d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Fri, 16 Feb 2024 14:24:50 +0100 Subject: [PATCH] fix: docker image invoice listener were not stopping (#2278) because it could not resolve localhost --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d3451ce72..1881f4fc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10-slim-bullseye RUN apt-get clean RUN apt-get update -RUN apt-get install -y curl pkg-config build-essential +RUN apt-get install -y curl pkg-config build-essential libnss-myhostname RUN curl -sSL https://install.python-poetry.org | python3 - ENV PATH="/root/.local/bin:$PATH"