2020-03-05 16:09:03 +00:00
# Frappe Bench Dockerfile
2020-03-07 18:24:54 +00:00
FROM bitnami/minideb:latest
2020-03-05 16:09:03 +00:00
LABEL author = frappé
2020-03-07 18:24:54 +00:00
RUN install_packages \
git \
wkhtmltopdf \
mariadb-client \
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 \
2020-03-07 18:24:54 +00:00
software-properties-common \
# For psycopg2
libpq-dev \
build-essential \
# Other
libffi-dev \
liblcms2-dev \
libldap2-dev \
libmariadbclient-dev \
libsasl2-dev \
libtiff5-dev \
libwebp-dev \
redis-tools \
rlwrap \
tk8.6-dev \
fonts-cantarell \
# VSCode container requirements
net-tools \
2020-03-08 18:37:26 +00:00
# PYTHON
2020-03-07 18:24:54 +00:00
python3-dev \
python3-pip \
python3-setuptools \
2020-03-08 18:37:26 +00:00
python3-tk \
python-virtualenv
2020-03-07 18:24:54 +00:00
# Install wkhtmltox correctly
RUN wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb
RUN dpkg -i wkhtmltox_0.12.5-1.stretch_amd64.deb && rm wkhtmltox_0.12.5-1.stretch_amd64.deb
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
RUN groupadd -g 1000 frappe
RUN useradd --no-log-init -r -m -u 1000 -g 1000 -G sudo frappe
2020-03-08 18:37:26 +00:00
RUN echo "frappe ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
USER frappe
WORKDIR /home/frappe
2020-03-05 16:09:03 +00:00
2020-03-08 18:37:26 +00:00
# Install bench in the local user home directory
RUN pip3 install --user git+https://github.com/frappe/bench.git#egg= bench --no-cache
# Export python executables for Dockerfile
ENV PATH = /home/frappe/.local/bin/:$PATH
# Export python executables for interactive shell
RUN echo "export PATH=/home/frappe/.local/bin/:\$PATH" >> /home/frappe/.bashrc
# Print version and verify bashrc is properly sourced so that everything works in the Dockerfile
RUN bench --version
# Print version and verify bashrc is properly sourced so that everything works in the interactive shell
RUN bash -c "bench --version"
2020-03-05 16:09:03 +00:00
2020-03-08 23:37:30 +00:00
# !!! UPDATE NODEJS PERIODICALLY WITH LATEST VERSIONS !!!
2020-03-08 18:37:26 +00:00
# https://nodejs.org/en/about/releases/
# https://nodejs.org/download/release/latest-v10.x/
# https://nodejs.org/download/release/latest-v12.x/
# https://nodejs.org/download/release/latest-v13.x/
ENV NODE_VERSION = 12 .16.1
ENV NODE_VERSION_FRAPPEV11 = 10 .19.0
2020-03-08 23:37:30 +00:00
# Install nvm with node
2020-03-08 18:37:26 +00:00
RUN wget https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh
RUN chmod +x install.sh
RUN ./install.sh
ENV NVM_DIR = /home/frappe/.nvm
2020-03-10 00:08:50 +00:00
# Install node for Frappe V11, install yarn
2020-03-08 18:37:26 +00:00
RUN . " $NVM_DIR /nvm.sh " && nvm install ${ NODE_VERSION_FRAPPEV11 }
2020-03-10 00:08:50 +00:00
RUN . " $NVM_DIR /nvm.sh " && nvm use v${ NODE_VERSION_FRAPPEV11 } && npm install -g yarn
# Install node for latest frappe, set as default, install node
RUN . " $NVM_DIR /nvm.sh " && nvm install ${ NODE_VERSION }
RUN . " $NVM_DIR /nvm.sh " && nvm use v${ NODE_VERSION } && npm install -g yarn
2020-03-07 18:24:54 +00:00
RUN . " $NVM_DIR /nvm.sh " && nvm alias default v${ NODE_VERSION }
2020-03-08 18:37:26 +00:00
ENV PATH = " /home/frappe/.nvm/versions/node/v ${ NODE_VERSION } /bin/: ${ PATH } "
# Install yarn
RUN npm install -g yarn
# 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 \
&& npm --version \
&& 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 16:09:03 +00:00
WORKDIR /home/frappe/frappe-bench
2020-03-09 13:26:42 +00:00
EXPOSE 8000 9000 6787