2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-08 06:15:26 +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 \
# VSCode container requirements
net-tools \
# Uncomment for python depencies
#make \
## For pandas
#libbz2-dev \
## For bench execute
#libsqlite3-dev \
## For other dependencies
#zlib1g-dev \
#libreadline-dev \
#llvm \
#libncurses5-dev \
#libncursesw5-dev \
#xz-utils \
#tk-dev \
#liblzma-dev \
# For pyenv build dependencies
# https://github.com/frappe/frappe_docker/issues/840#issuecomment-1185206895
make \
# For pandas
libbz2-dev \
# For bench execute
libsqlite3-dev \
# For other dependencies
zlib1g-dev \
libreadline-dev \
llvm \
libncurses5-dev \
libncursesw5-dev \
xz-utils \
tk-dev \
liblzma-dev \
&& 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 \