2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-12 01:45:40 +00:00
frappe_docker/Dockerfile

42 lines
1.5 KiB
Docker
Raw Normal View History

2017-07-18 09:00:58 +00:00
#bench Dockerfile
FROM ubuntu:16.04
MAINTAINER Vishal Seshagiri
USER root
RUN apt-get update
RUN apt-get install -y iputils-ping
2017-07-18 09:00:58 +00:00
RUN apt-get install -y git build-essential python-setuptools python-dev libffi-dev libssl-dev
RUN apt-get install -y redis-tools software-properties-common libxrender1 libxext6 xfonts-75dpi xfonts-base
RUN apt-get install -y libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev python-tk apt-transport-https libsasl2-dev libldap2-dev libtiff5-dev tcl8.6-dev tk8.6-dev
RUN apt-get install -y wget
RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py
RUN pip install --upgrade setuptools pip
RUN useradd -ms /bin/bash frappe
RUN apt-get install -y curl
RUN apt-get install -y rlwrap
2017-07-31 10:21:51 +00:00
RUN apt-get install redis-tools
2017-07-18 09:00:58 +00:00
RUN apt-get install -y nano
2017-07-18 09:00:58 +00:00
#nodejs
RUN apt-get install curl
RUN curl https://deb.nodesource.com/node_6.x/pool/main/n/nodejs/nodejs_6.7.0-1nodesource1~xenial1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN apt-get install -y wkhtmltopdf
USER frappe
WORKDIR /home/frappe
2017-07-31 10:21:51 +00:00
RUN git clone https://github.com/frappe/bench bench-repo
2017-07-18 09:00:58 +00:00
USER root
2017-07-31 10:21:51 +00:00
RUN pip install -e bench-repo
RUN apt-get install -y libmysqlclient-dev mariadb-client mariadb-common
2017-07-18 09:00:58 +00:00
2017-07-31 10:21:51 +00:00
USER frappe
WORKDIR /home/frappe/frappe-bench
#RUN mv /home/pyth/frappe/frappe_docker/frappe-bench/sites/common_site_config_docker.json /home/pyth/frappe/frappe_docker/frappe-bench/sites/common_site_config.json
#RUN mv /home/pyth/frappe/frappe_docker/frappe-bench/Procfile_docker /home/pyth/frappe/frappe_docker/frappe-bench/Procfile