2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-04-04 08:21:50 +00:00

Merge pull request #143 from revant/feat-bench-image

feat(bench): bash-completion
This commit is contained in:
Revant Nandgaonkar 2020-03-11 22:42:55 +05:30 committed by GitHub
commit 15d087059b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,9 +25,9 @@ RUN install_packages \
tree \ tree \
nano \ nano \
software-properties-common \ software-properties-common \
bash-completion \
# For psycopg2 # For psycopg2
libpq-dev \ libpq-dev \
build-essential \
# Other # Other
libffi-dev \ libffi-dev \
liblcms2-dev \ liblcms2-dev \
@ -39,7 +39,6 @@ RUN install_packages \
redis-tools \ redis-tools \
rlwrap \ rlwrap \
tk8.6-dev \ tk8.6-dev \
fonts-cantarell \
# VSCode container requirements # VSCode container requirements
net-tools \ net-tools \
# PYTHON # PYTHON
@ -64,9 +63,9 @@ WORKDIR /home/frappe
RUN pip3 install --user git+https://github.com/frappe/bench.git#egg=bench --no-cache RUN pip3 install --user git+https://github.com/frappe/bench.git#egg=bench --no-cache
# Export python executables for Dockerfile # Export python executables for Dockerfile
ENV PATH=/home/frappe/.local/bin/:$PATH ENV PATH=/home/frappe/.local/bin:$PATH
# Export python executables for interactive shell # Export python executables for interactive shell
RUN echo "export PATH=/home/frappe/.local/bin/:\$PATH" >> /home/frappe/.bashrc 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 # Print version and verify bashrc is properly sourced so that everything works in the Dockerfile
RUN bench --version RUN bench --version
@ -89,10 +88,10 @@ ENV NVM_DIR=/home/frappe/.nvm
# Install node for Frappe V11, install yarn # Install node for Frappe V11, install yarn
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION_FRAPPEV11} 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 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 # 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 install ${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION} && npm install -g yarn 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} RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
ENV PATH="/home/frappe/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}" ENV PATH="/home/frappe/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"
@ -101,13 +100,11 @@ RUN npm install -g yarn
# Print version and verify bashrc is properly sourced so that everything works in the Dockerfile # Print version and verify bashrc is properly sourced so that everything works in the Dockerfile
RUN node --version \ RUN node --version \
&& npm --version \ && npm --version \
&& yarn --version && yarn --version
# Print version and verify bashrc is properly sourced so that everything works in the interactive shell # Print version and verify bashrc is properly sourced so that everything works in the interactive shell
RUN bash -c "node --version" \ RUN bash -c "node --version" \
&& bash -c "npm --version" \ && bash -c "npm --version" \
&& bash -c "yarn --version" && bash -c "yarn --version"
EXPOSE 8000 9000 6787
WORKDIR /home/frappe/frappe-bench
EXPOSE 8000 9000 6787