├── heroku.yml ├── Dockerfile └── README.md /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | web: Dockerfile 4 | run: 5 | web: /usr/sbin/apache2 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:5.6-apache 2 | 3 | # Installing packages 4 | RUN apt-get update && \ 5 | apt-get install -y python-pip libnet1 libnet1-dev libpcap0.8 libpcap0.8-dev git wget apache2 curl 6 | 7 | # Cloning git repository 8 | RUN git clone https://github.com/Th3-822/rapidleech.git ./ 9 | 10 | # Moving file 11 | COPY ./ /var/www/html 12 | 13 | # Exposing 14 | EXPOSE 80 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Heroku-Rapidleech 2 | 3 | `git clone https://github.com/HasibulKabir/Heroku-Rapidleech` 4 | 5 | `cd Heroku-Rapidleech` 6 | 7 | `heroku login` 8 | 9 | `heroku git:remote -a xxxxx` 10 | 11 | `heroku stack:set container` 12 | 13 | `git push heroku HEAD:master --force` 14 | 15 | #### Optional: 16 | 17 | `heroku ps:scale worker=0` 18 | 19 | `heroku ps:scale worker=1` 20 | --------------------------------------------------------------------------------