Add welcome message when the terminal is launched

This commit is contained in:
febrezo 2021-07-20 14:02:29 +02:00
parent f3afc871cd
commit 1adf3f430b
2 changed files with 3 additions and 2 deletions

View File

@ -25,5 +25,7 @@ RUN echo 'alias abe="java -jar /opt/abe/abe.jar"' >> ~/.bashrc
# --------------------------------
RUN mkdir /home/cases
WORKDIR /home/cases
RUN echo 'echo "Mobile Verification Toolkit @ Docker\n------------------------------------\n\nYou can find information about how to use this image for Android (https://github.com/mvt-project/mvt/tree/master/docs/android) and iOS (https://github.com/mvt-project/mvt/tree/master/docs/ios) in the official docs of the project.\n"' >> ~/.bashrc
RUN echo 'echo "Note that to perform the debug via USB you might need to give the Docker image access to the USB using \"docker run -it --privileged -v /dev/bus/usb:/dev/bus/usb mvt\" or, preferably, the \"--device=\" parameter.\n"' >> ~/.bashrc
CMD /bin/bash

View File

@ -17,8 +17,7 @@ Install Docker using the [official instructions](https://docs.docker.com/get-doc
Afterwards, you can build the Docker image once inside:
```
bash
```bash
git clone https://github.com/mvt-project/mvt.git
cd mvt
docker build -t mvt .