2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-21 03:29:01 +00:00
frappe_docker/build/frappe-worker/Dockerfile

89 lines
2.8 KiB
Docker
Raw Normal View History

2021-01-08 12:15:22 +00:00
FROM python:3.7-slim-buster
2020-02-10 08:00:54 +00:00
# Add non root user without password
2021-01-08 12:15:22 +00:00
RUN useradd -ms /bin/bash frappe
2020-06-27 18:14:13 +00:00
ARG GIT_REPO=https://github.com/frappe/frappe
2020-06-27 18:14:13 +00:00
ARG GIT_BRANCH=develop
2021-01-08 12:15:22 +00:00
ARG ARCH=amd64
ENV PYTHONUNBUFFERED 1
2020-08-05 16:10:37 +00:00
ENV NVM_DIR=/home/frappe/.nvm
ENV NODE_VERSION=14.17.0
2020-08-05 16:10:37 +00:00
ENV PATH="/home/frappe/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"
2020-06-27 18:14:13 +00:00
# Install dependencies
2020-02-10 08:00:54 +00:00
WORKDIR /home/frappe/frappe-bench
2021-01-08 12:15:22 +00:00
RUN apt-get update -y && apt-get install \
# for frappe framework
2020-02-10 08:00:54 +00:00
git \
mariadb-client \
2020-06-27 18:14:13 +00:00
postgresql-client \
2020-02-10 08:00:54 +00:00
gettext-base \
wget \
2021-01-08 12:15:22 +00:00
wait-for-it \
2020-02-10 08:00:54 +00:00
# for PDF
2020-06-27 18:14:13 +00:00
libjpeg62-turbo \
libx11-6 \
2020-06-27 18:14:13 +00:00
libxcb1 \
libxext6 \
libxrender1 \
2020-02-10 08:00:54 +00:00
libssl-dev \
fonts-cantarell \
2020-02-10 08:00:54 +00:00
xfonts-75dpi \
xfonts-base \
2021-01-08 12:15:22 +00:00
libxml2 \
libffi-dev \
libjpeg-dev \
zlib1g-dev \
2020-02-10 08:00:54 +00:00
# For psycopg2
libpq-dev \
2021-01-08 12:15:22 +00:00
# For arm64 python wheel builds
gcc \
g++ -y \
# Detect arch, download and install wkhtmltox
&& if [ `uname -m` = 'aarch64' ]; then export ARCH=arm64; fi \
&& if [ `uname -m` = 'x86_64' ]; then export ARCH=amd64; fi \
&& wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.buster_${ARCH}.deb \
&& dpkg -i wkhtmltox_0.12.6-1.buster_${ARCH}.deb && rm wkhtmltox_0.12.6-1.buster_${ARCH}.deb \
&& wget https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh \
2020-08-05 16:10:37 +00:00
&& chown -R frappe:frappe /home/frappe
2021-02-20 10:54:01 +00:00
# Setup docker-entrypoint
COPY build/common/worker/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN ln -s /usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-08-05 16:10:37 +00:00
USER frappe
# Install nvm with node
RUN bash install.sh \
&& . "$NVM_DIR/nvm.sh" \
&& nvm install ${NODE_VERSION} \
&& nvm use v${NODE_VERSION} \
&& nvm alias default v${NODE_VERSION}
2020-02-10 08:00:54 +00:00
2020-06-27 18:14:13 +00:00
# Create frappe-bench directories
RUN mkdir -p apps logs commands sites /home/frappe/backups
2020-02-10 08:00:54 +00:00
2020-06-27 18:14:13 +00:00
# Setup python environment
RUN python -m venv env \
2020-02-10 08:00:54 +00:00
&& . env/bin/activate \
&& pip3 install --upgrade pip \
&& pip3 install gevent \
2020-02-10 08:00:54 +00:00
&& cd apps \
&& git clone --depth 1 -o upstream ${GIT_REPO} --branch ${GIT_BRANCH} \
&& pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/frappe
2020-02-10 08:00:54 +00:00
2020-06-27 18:14:13 +00:00
# Copy scripts and templates
COPY build/common/commands/* /home/frappe/frappe-bench/commands/
COPY build/common/common_site_config.json.template /opt/frappe/common_site_config.json.template
2020-06-27 18:14:13 +00:00
COPY build/common/worker/install_app.sh /usr/local/bin/install_app
2020-08-29 18:36:56 +00:00
COPY build/common/worker/bench /usr/local/bin/bench
COPY build/common/worker/healthcheck.sh /usr/local/bin/healthcheck.sh
2020-02-10 08:00:54 +00:00
2020-06-27 18:14:13 +00:00
# Use sites volume as working directory
2020-02-10 08:00:54 +00:00
WORKDIR /home/frappe/frappe-bench/sites
2021-02-20 10:54:01 +00:00
VOLUME [ "/home/frappe/frappe-bench/sites", "/home/frappe/backups", "/home/frappe/frappe-bench/logs" ]
2020-02-10 08:00:54 +00:00
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["start"]