2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-08 14:21:05 +00:00

feat(bench): bash-completion

add bash-completion package
remove install_packages duplicates
workdir set to /home/frappe
This commit is contained in:
Revant Nandgaonkar 2020-03-11 22:38:48 +05:30
parent ac79b095f3
commit f506c25a6e

View File

@ -25,9 +25,9 @@ RUN install_packages \
tree \
nano \
software-properties-common \
bash-completion \
# For psycopg2
libpq-dev \
build-essential \
# Other
libffi-dev \
liblcms2-dev \
@ -39,7 +39,6 @@ RUN install_packages \
redis-tools \
rlwrap \
tk8.6-dev \
fonts-cantarell \
# VSCode container requirements
net-tools \
# PYTHON
@ -64,9 +63,9 @@ WORKDIR /home/frappe
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
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
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
@ -108,6 +107,4 @@ RUN bash -c "node --version" \
&& bash -c "npm --version" \
&& bash -c "yarn --version"
WORKDIR /home/frappe/frappe-bench
EXPOSE 8000 9000 6787