Please include this commit to decrease the size of the docker image, the "rm -rf /var/lib/apt/lists/*" it is not usefull if it is not used in the same stage of the apt-get install RUN, similar with pip cache.
References:
- https://linux.die.net/man/8/apt-get
- https://stackoverflow.com/questions/9510474/removing-pips-cache
- https://semaphoreci.com/blog/2016/12/13/lightweight-docker-images-in-5-steps.html
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file;
(b) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.
Signed-off-by: William Moreno Reyes <williamjmorenor@gmail.com>
./dbench init would lead to 'missing argument: PATH' issue (#54), and could not find Procfile_docker and site-config.
Signed-off-by: Chinmay Pai <chinmaydpai@gmail.com>
This PR adds the `bench` script, which aims for near parity with frappe bench, it makes setting up far easier, because instead of running `./dbench -c "new-site site1.local"` you only white what you would if bench was installed on the local system (i.e. `./bench new-site site1.local`), it also adds other features as well.
* Condensed Dockerfile
Updated to latest node, and uses python-pip, also condensed a lot the Dockerfile.
* Removed extra line
* Removed MAINTAINER in favor of LABEL
* all installs are in one apt command
it took me a long time to way to login after initially installing. I eventually found out the default by looking into closed issues on github. I just added a line to the readme to make it clear for future users to get up and running faster.
- Added missing shebang
- Fixed malformed multi line variables
- Removed unnecessary su (which is not working in this way anyway)
- Added missing error handling (unsupported options as well as missing argument)
- Simplified the whole script (without the removal of features, hopefully?)
Former-commit-id: 33cc4ff3a0