What I want to build, without Docker, would look like this:
- AWS EC2 Debian OS where I can install:
- Python 3
- Anaconda
- Run python scripts that will create new files as output
- SSH into it so that I can explore the new files created
I am starting to use Docker an my first approach was to build everything into a Dockerfile but I don't know how to add multiple FROM so that I can install the official docker image of Debian, Python3 and Anaconda.
In addition, with this approach is it possible to get into the container and explore the files that have been created?