fix: docker image invoice listener were not stopping (#2278)

because it could not resolve localhost
This commit is contained in:
dni ⚡ 2024-02-16 14:24:50 +01:00 committed by GitHub
parent decd4cdf0a
commit 7b559991c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@ FROM python:3.10-slim-bullseye
RUN apt-get clean RUN apt-get clean
RUN apt-get update 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 - RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH" ENV PATH="/root/.local/bin:$PATH"