This commit is contained in:
2026-02-10 18:12:52 +00:00
parent 91b3740ec0
commit dc34a78e06
7 changed files with 13 additions and 85 deletions

View File

@ -25,17 +25,9 @@ RUN \
else echo "Lockfile not found." && exit 1; \
fi
FROM python:3.13 AS runner
FROM python:3.14 AS runner
LABEL maintainer="Amritanshu <docker@tanshu.com>"
RUN apt-get update && \
apt-get install -y locales && \
sed --in-place --expression='s/# en_IN UTF-8/en_IN UTF-8/' /etc/locale.gen && \
dpkg-reconfigure --frontend=noninteractive locales
ENV LANG=en_IN
ENV LC_ALL=en_IN
# Install Poetry
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python - && \
cd /usr/local/bin && \