17 lines
590 B
Docker
17 lines
590 B
Docker
|
# For more information, please refer to https://aka.ms/vscode-docker-python
|
||
|
FROM mcr.microsoft.com/devcontainers/python:0-3.11
|
||
|
|
||
|
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 && \
|
||
|
ln -s /opt/poetry/bin/poetry && \
|
||
|
poetry config virtualenvs.create false
|