mirror of
https://github.com/frappe/frappe_docker.git
synced 2025-01-09 16:36:26 +00:00
fix: install py 3.7 using pyenv (#590)
* fix: install py 3.7 using pyenv * fix: set pyenv global versions * refactor: cleaup code
This commit is contained in:
parent
9a986575f6
commit
0af1302485
@ -1,16 +1,10 @@
|
|||||||
FROM python:3.9-slim-bullseye as build
|
FROM debian:bullseye-slim as build
|
||||||
|
|
||||||
LABEL author=frappé
|
LABEL author=frappé
|
||||||
|
|
||||||
ARG GIT_REPO=https://github.com/frappe/bench.git
|
ARG GIT_REPO=https://github.com/frappe/bench.git
|
||||||
ARG GIT_BRANCH=develop
|
ARG GIT_BRANCH=develop
|
||||||
|
|
||||||
ENV NODE_VERSION=14.18.1
|
|
||||||
ENV NODE_VERSION_FRAPPEV11=10.24.1
|
|
||||||
ENV NVM_DIR /home/frappe/.nvm
|
|
||||||
ENV PATH ${NVM_DIR}/versions/node/v${NODE_VERSION}/bin/:${PATH}
|
|
||||||
ENV WKHTMLTOPDF_VERSION 0.12.6-1
|
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
||||||
# For frappe framework
|
# For frappe framework
|
||||||
@ -59,7 +53,8 @@ RUN apt-get update \
|
|||||||
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 \
|
||||||
&& dpkg-reconfigure --frontend=noninteractive locales
|
&& dpkg-reconfigure --frontend=noninteractive locales
|
||||||
|
|
||||||
# Detect arch, download and install wkhtmltopdf
|
# Detect arch and install wkhtmltopdf
|
||||||
|
ENV WKHTMLTOPDF_VERSION 0.12.6-1
|
||||||
RUN if [ "$(uname -m)" = "aarch64" ]; then export ARCH=arm64; fi \
|
RUN if [ "$(uname -m)" = "aarch64" ]; then export ARCH=arm64; fi \
|
||||||
&& if [ "$(uname -m)" = "x86_64" ]; then export ARCH=amd64; fi \
|
&& if [ "$(uname -m)" = "x86_64" ]; then export ARCH=amd64; fi \
|
||||||
&& downloaded_file=wkhtmltox_$WKHTMLTOPDF_VERSION.buster_${ARCH}.deb \
|
&& downloaded_file=wkhtmltox_$WKHTMLTOPDF_VERSION.buster_${ARCH}.deb \
|
||||||
@ -67,7 +62,9 @@ RUN if [ "$(uname -m)" = "aarch64" ]; then export ARCH=arm64; fi \
|
|||||||
&& dpkg -i $downloaded_file \
|
&& dpkg -i $downloaded_file \
|
||||||
&& rm $downloaded_file
|
&& rm $downloaded_file
|
||||||
|
|
||||||
# Create new user with home directory, improve docker compatibility with UID/GID 1000, add user to sudo group, allow passwordless sudo, switch to that user and change directory to user home directory
|
# Create new user with home directory, improve docker compatibility with UID/GID 1000,
|
||||||
|
# add user to sudo group, allow passwordless sudo, switch to that user
|
||||||
|
# and change directory to user home directory
|
||||||
RUN groupadd -g 1000 frappe \
|
RUN groupadd -g 1000 frappe \
|
||||||
&& useradd --no-log-init -r -m -u 1000 -g 1000 -G sudo frappe \
|
&& useradd --no-log-init -r -m -u 1000 -g 1000 -G sudo frappe \
|
||||||
&& echo "frappe ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
&& echo "frappe ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||||
@ -75,20 +72,38 @@ RUN groupadd -g 1000 frappe \
|
|||||||
USER frappe
|
USER frappe
|
||||||
WORKDIR /home/frappe
|
WORKDIR /home/frappe
|
||||||
|
|
||||||
|
# Install Python via pyenv
|
||||||
|
# Python 3.7 sits here for ERPNext version-12
|
||||||
|
# TODO: Remove Python 3.7 when version-12 will not be supported
|
||||||
|
ENV PYTHON_VERSION_V12=3.7.12
|
||||||
|
ENV PYTHON_VERSION=3.9.9
|
||||||
|
ENV PYENV_ROOT /home/frappe/.pyenv
|
||||||
|
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
|
||||||
|
|
||||||
|
# From https://github.com/pyenv/pyenv#basic-github-checkout
|
||||||
|
RUN git clone --depth 1 https://github.com/pyenv/pyenv.git .pyenv \
|
||||||
|
&& pyenv install $PYTHON_VERSION_V12 \
|
||||||
|
&& pyenv install $PYTHON_VERSION \
|
||||||
|
&& pyenv global $PYTHON_VERSION $PYTHON_VERSION_V12 \
|
||||||
|
&& sed -Ei -e '/^([^#]|$)/ {a export PYENV_ROOT="/home/frappe/.pyenv" a export PATH="$PYENV_ROOT/bin:$PATH" a ' -e ':a' -e '$!{n;ba};}' ~/.profile \
|
||||||
|
&& echo 'eval "$(pyenv init --path)"' >>~/.profile \
|
||||||
|
&& echo 'eval "$(pyenv init -)"' >>~/.bashrc
|
||||||
|
|
||||||
# Clone and install bench in the local user home directory
|
# Clone and install bench in the local user home directory
|
||||||
# For development, bench source is located in ~/.bench
|
# For development, bench source is located in ~/.bench
|
||||||
RUN git clone ${GIT_REPO} --depth 1 -b ${GIT_BRANCH} .bench \
|
|
||||||
&& pip install --user -e .bench
|
|
||||||
|
|
||||||
# Export python executables for Dockerfile
|
|
||||||
ENV PATH /home/frappe/.local/bin:$PATH
|
ENV PATH /home/frappe/.local/bin:$PATH
|
||||||
# Export python executables for interactive shell
|
RUN git clone ${GIT_REPO} --depth 1 -b ${GIT_BRANCH} .bench \
|
||||||
RUN echo "export PATH=/home/frappe/.local/bin:\$PATH" >> /home/frappe/.bashrc
|
&& pip install --user -e .bench \
|
||||||
|
&& echo "export PATH=/home/frappe/.local/bin:\$PATH" >> /home/frappe/.bashrc
|
||||||
|
|
||||||
|
# Install Node via nvm
|
||||||
|
ENV NODE_VERSION=14.18.1
|
||||||
|
ENV NODE_VERSION_FRAPPEV11=10.24.1
|
||||||
|
ENV NVM_DIR /home/frappe/.nvm
|
||||||
|
ENV PATH ${NVM_DIR}/versions/node/v${NODE_VERSION}/bin/:${PATH}
|
||||||
|
|
||||||
# Install nvm with node
|
|
||||||
RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash \
|
RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash \
|
||||||
&& . ${NVM_DIR}/nvm.sh \
|
&& . ${NVM_DIR}/nvm.sh \
|
||||||
# Install node for Frappe V11, install yarn
|
|
||||||
&& nvm install ${NODE_VERSION_FRAPPEV11} \
|
&& nvm install ${NODE_VERSION_FRAPPEV11} \
|
||||||
&& nvm use v${NODE_VERSION_FRAPPEV11} \
|
&& nvm use v${NODE_VERSION_FRAPPEV11} \
|
||||||
&& npm install -g yarn \
|
&& npm install -g yarn \
|
||||||
@ -96,20 +111,25 @@ RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh |
|
|||||||
&& nvm use v${NODE_VERSION} \
|
&& nvm use v${NODE_VERSION} \
|
||||||
&& npm install -g yarn \
|
&& npm install -g yarn \
|
||||||
&& nvm alias default v${NODE_VERSION} \
|
&& nvm alias default v${NODE_VERSION} \
|
||||||
&& rm -rf ${NVM_DIR}/.cache
|
&& rm -rf ${NVM_DIR}/.cache \
|
||||||
|
&& echo 'export NVM_DIR="/home/frappe/.nvm"' >>~/.bashrc \
|
||||||
|
&& echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \
|
||||||
|
&& echo '[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion' >> ~/.bashrc
|
||||||
|
|
||||||
|
|
||||||
EXPOSE 8000-8005 9000-9005 6787
|
EXPOSE 8000-8005 9000-9005 6787
|
||||||
|
|
||||||
FROM build as test
|
FROM build as test
|
||||||
|
|
||||||
# Print version and verify bashrc is properly sourced so that everything works in the Dockerfile
|
# Print version and verify bashrc is properly sourced so that everything works
|
||||||
|
# in the interactive shell and Dockerfile
|
||||||
|
|
||||||
RUN node --version \
|
RUN node --version \
|
||||||
&& npm --version \
|
&& npm --version \
|
||||||
&& yarn --version
|
&& yarn --version \
|
||||||
# Print version and verify bashrc is properly sourced so that everything works in the interactive shell
|
&& bench --help
|
||||||
|
|
||||||
RUN bash -c "node --version" \
|
RUN bash -c "node --version" \
|
||||||
&& bash -c "npm --version" \
|
&& bash -c "npm --version" \
|
||||||
&& bash -c "yarn --version"
|
&& bash -c "yarn --version" \
|
||||||
|
&& bash -c "bench --help"
|
||||||
RUN bench --help
|
|
||||||
RUN bash -c "bench --help"
|
|
@ -62,6 +62,8 @@ bench init --skip-redis-config-generation --frappe-branch version-13 frappe-benc
|
|||||||
cd frappe-bench
|
cd frappe-bench
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note: For version 12 use python 3.7 by passing option to `bench init` command, e.g. `bench init --skip-redis-config-generation --frappe-branch version-12 --python python3.7 frappe-bench`
|
||||||
|
|
||||||
### Setup hosts
|
### Setup hosts
|
||||||
|
|
||||||
We need to tell bench to use the right containers instead of localhost. Run the following commands inside the container:
|
We need to tell bench to use the right containers instead of localhost. Run the following commands inside the container:
|
||||||
|
Loading…
Reference in New Issue
Block a user