2021-11-10 02:13:46 +03:00
FROM python:3.9-slim-bullseye as build
LABEL author = frappé
2021-05-21 14:30:55 +05:30
ARG GIT_REPO = https://github.com/frappe/bench.git
ARG GIT_BRANCH = develop
2021-11-10 02:13:46 +03:00
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
2020-03-05 21:39:03 +05:30
2021-11-10 02:13:46 +03:00
RUN apt-get update \
&& DEBIAN_FRONTEND = noninteractive apt-get install --no-install-recommends -y \
# For frappe framework
2020-03-07 18:24:54 +00:00
git \
mariadb-client \
2020-06-30 15:25:10 +05:30
postgresql-client \
2020-03-07 18:24:54 +00:00
gettext-base \
wget \
# for PDF
libssl-dev \
fonts-cantarell \
xfonts-75dpi \
xfonts-base \
# to work inside the container
locales \
build-essential \
cron \
curl \
vim \
sudo \
iputils-ping \
2020-03-08 19:07:03 +00:00
watch \
tree \
nano \
2021-11-10 02:13:46 +03:00
less \
2020-03-07 18:24:54 +00:00
software-properties-common \
2020-03-11 22:38:48 +05:30
bash-completion \
2020-03-07 18:24:54 +00:00
# For psycopg2
libpq-dev \
# Other
libffi-dev \
liblcms2-dev \
libldap2-dev \
2021-11-10 02:13:46 +03:00
libmariadb-dev \
2020-03-07 18:24:54 +00:00
libsasl2-dev \
libtiff5-dev \
libwebp-dev \
redis-tools \
rlwrap \
tk8.6-dev \
2020-04-17 00:34:22 +01:00
ssh-client \
2020-03-07 18:24:54 +00:00
# VSCode container requirements
net-tools \
2021-11-10 02:13:46 +03:00
&& rm -rf /var/lib/apt/lists/*
2020-03-07 18:24:54 +00:00
2020-03-12 05:53:47 +05:30
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \
2021-11-04 15:31:49 +03:00
&& dpkg-reconfigure --frontend= noninteractive locales
2020-03-12 05:53:47 +05:30
2021-11-10 02:13:46 +03:00
# Detect arch, download and install wkhtmltopdf
RUN if [ " $( uname -m) " = "aarch64" ] ; then export ARCH = arm64; fi \
&& if [ " $( uname -m) " = "x86_64" ] ; then export ARCH = amd64; fi \
&& downloaded_file = wkhtmltox_$WKHTMLTOPDF_VERSION .buster_${ ARCH } .deb \
&& wget -q https://github.com/wkhtmltopdf/packaging/releases/download/$WKHTMLTOPDF_VERSION /$downloaded_file \
&& dpkg -i $downloaded_file \
&& rm $downloaded_file
2020-03-07 18:24:54 +00:00
2020-03-10 00:00:46 +00:00
# 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
2021-11-10 02:13:46 +03:00
RUN groupadd -g 1000 frappe \
&& useradd --no-log-init -r -m -u 1000 -g 1000 -G sudo frappe \
&& echo "frappe ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
2020-03-08 18:37:26 +00:00
USER frappe
WORKDIR /home/frappe
2020-03-05 21:39:03 +05:30
2020-05-18 00:18:08 +05:30
# Clone and install bench in the local user home directory
# For development, bench source is located in ~/.bench
2021-08-09 16:13:05 +08:00
RUN git clone ${ GIT_REPO } --depth 1 -b ${ GIT_BRANCH } .bench \
2021-11-10 02:13:46 +03:00
&& pip install --user -e .bench
2020-03-08 18:37:26 +00:00
# Export python executables for Dockerfile
2021-11-10 02:13:46 +03:00
ENV PATH /home/frappe/.local/bin:$PATH
2020-03-08 18:37:26 +00:00
# Export python executables for interactive shell
2020-03-11 22:38:48 +05:30
RUN echo "export PATH=/home/frappe/.local/bin:\$PATH" >> /home/frappe/.bashrc
2020-03-08 18:37:26 +00:00
2020-03-08 23:37:30 +00:00
# Install nvm with node
2021-11-10 02:13:46 +03:00
RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash \
&& . ${ NVM_DIR } /nvm.sh \
# Install node for Frappe V11, install yarn
&& nvm install ${ NODE_VERSION_FRAPPEV11 } \
&& nvm use v${ NODE_VERSION_FRAPPEV11 } \
&& npm install -g yarn \
&& nvm install ${ NODE_VERSION } \
&& nvm use v${ NODE_VERSION } \
&& npm install -g yarn \
&& nvm alias default v${ NODE_VERSION } \
&& rm -rf ${ NVM_DIR } /.cache
2020-03-08 18:37:26 +00:00
2021-11-04 15:31:49 +03:00
EXPOSE 8000-8005 9000-9005 6787
FROM build as test
2020-03-08 18:37:26 +00:00
# Print version and verify bashrc is properly sourced so that everything works in the Dockerfile
2020-03-08 23:37:30 +00:00
RUN node --version \
2020-03-11 22:38:48 +05:30
&& npm --version \
2020-03-08 23:37:30 +00:00
&& yarn --version
2020-03-08 18:37:26 +00:00
# Print version and verify bashrc is properly sourced so that everything works in the interactive shell
2020-03-08 23:37:30 +00:00
RUN bash -c "node --version" \
&& bash -c "npm --version" \
&& bash -c "yarn --version"
2020-03-05 21:39:03 +05:30
2021-11-04 15:31:49 +03:00
RUN bench --help
RUN bash -c "bench --help"