mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-12-23 10:38:58 +00:00
commit
ae8d880702
@ -1,59 +1,113 @@
|
|||||||
# Frappe Bench Dockerfile
|
# Frappe Bench Dockerfile
|
||||||
|
FROM bitnami/minideb:latest
|
||||||
FROM debian:9.6-slim
|
|
||||||
LABEL author=frappé
|
LABEL author=frappé
|
||||||
|
|
||||||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends locales \
|
RUN install_packages \
|
||||||
&& sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \
|
git \
|
||||||
&& dpkg-reconfigure --frontend=noninteractive locales \
|
wkhtmltopdf \
|
||||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
mariadb-client \
|
||||||
|
gettext-base \
|
||||||
# Set locale en_us.UTF-8 for mariadb and general locale data
|
wget \
|
||||||
ENV PYTHONIOENCODING=utf-8
|
# for PDF
|
||||||
ENV LANGUAGE=en_US.UTF-8
|
libssl-dev \
|
||||||
ENV LANG=en_US.UTF-8
|
fonts-cantarell \
|
||||||
ENV LC_ALL=en_US.UTF-8
|
xfonts-75dpi \
|
||||||
|
xfonts-base \
|
||||||
# Install all neccesary packages
|
# to work inside the container
|
||||||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-suggests --no-install-recommends \
|
locales \
|
||||||
build-essential cron curl git libffi-dev liblcms2-dev libldap2-dev libmariadbclient-dev libsasl2-dev libssl1.0-dev libtiff5-dev \
|
build-essential \
|
||||||
libwebp-dev mariadb-client iputils-ping python3-dev python3-pip python3-setuptools python3-tk redis-tools rlwrap \
|
cron \
|
||||||
software-properties-common sudo tk8.6-dev vim xfonts-75dpi xfonts-base wget wkhtmltopdf fonts-cantarell net-tools \
|
curl \
|
||||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
vim \
|
||||||
|
sudo \
|
||||||
# Add frappe user and setup sudo
|
iputils-ping \
|
||||||
RUN groupadd -g 1000 frappe \
|
watch \
|
||||||
&& useradd -ms /bin/bash -u 1000 -g 1000 -G sudo frappe \
|
tree \
|
||||||
&& chown -R 1000:1000 /home/frappe \
|
nano \
|
||||||
&& echo '. "$NVM_DIR/nvm.sh"' >> /home/frappe/.bashrc
|
software-properties-common \
|
||||||
|
# For psycopg2
|
||||||
# Install nvm with node
|
libpq-dev \
|
||||||
ENV NVM_DIR /home/frappe/.nvm
|
build-essential \
|
||||||
ENV NODE_VERSION 12.16.1
|
# Other
|
||||||
RUN mkdir /home/frappe/.nvm \
|
libffi-dev \
|
||||||
&& wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.35.2/install.sh | bash \
|
liblcms2-dev \
|
||||||
&& . $NVM_DIR/nvm.sh \
|
libldap2-dev \
|
||||||
&& nvm install $NODE_VERSION \
|
libmariadbclient-dev \
|
||||||
&& nvm install 10.19.0 \
|
libsasl2-dev \
|
||||||
&& npm install yarn -g \
|
libtiff5-dev \
|
||||||
&& nvm alias default $NODE_VERSION \
|
libwebp-dev \
|
||||||
&& nvm use default \
|
redis-tools \
|
||||||
&& npm install yarn -g \
|
rlwrap \
|
||||||
&& chown -R frappe:frappe /home/frappe
|
tk8.6-dev \
|
||||||
ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
|
fonts-cantarell \
|
||||||
ENV PATH $NVM_DIR/v$NODE_VERSION/bin:$PATH
|
# VSCode container requirements
|
||||||
|
net-tools \
|
||||||
|
# PYTHON
|
||||||
|
python3-dev \
|
||||||
|
python3-pip \
|
||||||
|
python3-setuptools \
|
||||||
|
python3-tk \
|
||||||
|
python-virtualenv
|
||||||
|
|
||||||
# Install wkhtmltox correctly
|
# Install wkhtmltox correctly
|
||||||
RUN wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.stretch_amd64.deb
|
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
|
RUN dpkg -i wkhtmltox_0.12.5-1.stretch_amd64.deb && rm wkhtmltox_0.12.5-1.stretch_amd64.deb
|
||||||
|
|
||||||
# Install bench
|
# 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 pip3 install -e git+https://github.com/frappe/bench.git#egg=bench --no-cache
|
RUN groupadd -g 1000 frappe
|
||||||
|
RUN useradd --no-log-init -r -m -u 1000 -g 1000 -G sudo frappe
|
||||||
|
RUN echo "frappe ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||||
USER frappe
|
USER frappe
|
||||||
|
WORKDIR /home/frappe
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
# !!! UPDATE NODEJS PERIODICALLY WITH LATEST VERSIONS !!!
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# Install nvm with node
|
||||||
|
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
|
||||||
|
|
||||||
|
# Install node for Frappe V11, install yarn
|
||||||
|
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION_FRAPPEV11}
|
||||||
|
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
|
||||||
|
RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
|
||||||
|
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
|
||||||
|
RUN node --version \
|
||||||
|
&& npm --version \
|
||||||
|
&& yarn --version
|
||||||
|
# Print version and verify bashrc is properly sourced so that everything works in the interactive shell
|
||||||
|
RUN bash -c "node --version" \
|
||||||
|
&& bash -c "npm --version" \
|
||||||
|
&& bash -c "yarn --version"
|
||||||
|
|
||||||
|
|
||||||
WORKDIR /home/frappe/frappe-bench
|
WORKDIR /home/frappe/frappe-bench
|
||||||
|
EXPOSE 8000 9000 6787
|
||||||
EXPOSE 8000 9000 6787
|
|
||||||
|
|
||||||
VOLUME [ "/home/frappe/frappe-bench" ]
|
|
Loading…
Reference in New Issue
Block a user