From 8092021e2f313bba8a917b28b1d3d6bad033c89d Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 26 Apr 2022 20:34:11 +0200 Subject: [PATCH] Add gettext to build image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ffbd544..19932c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ ## Build venv FROM python:3.10.4-bullseye AS venv +RUN apt-get update && apt-get install -y --no-install-recommends \ + gettext + # https://python-poetry.org/docs/#installation ENV POETRY_VERSION=1.1.13 RUN curl -sSL https://install.python-poetry.org | python3 -