2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-02-08 23:18:28 +00:00

fix(bench): add dependencies to build python using pyenv (#920)

* fix(bench): add dependencies to build python using pyenv

fixes #840

* fix(bench): comment typo
This commit is contained in:
Revant Nandgaonkar 2022-09-09 15:48:22 +05:30 committed by GitHub
parent 81ea33d56e
commit 2c1e5425b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,21 +48,22 @@ RUN apt-get update \
ssh-client \ ssh-client \
# VSCode container requirements # VSCode container requirements
net-tools \ net-tools \
# Uncomment for python depencies # For pyenv build dependencies
#make \ # https://github.com/frappe/frappe_docker/issues/840#issuecomment-1185206895
## For pandas make \
#libbz2-dev \ # For pandas
## For bench execute libbz2-dev \
#libsqlite3-dev \ # For bench execute
## For other dependencies libsqlite3-dev \
#zlib1g-dev \ # For other dependencies
#libreadline-dev \ zlib1g-dev \
#llvm \ libreadline-dev \
#libncurses5-dev \ llvm \
#libncursesw5-dev \ libncurses5-dev \
#xz-utils \ libncursesw5-dev \
#tk-dev \ xz-utils \
#liblzma-dev \ tk-dev \
liblzma-dev \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \ RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \