I am trying to build a backup and restore solution for the Docker containers that we work with.
I have Docker base image that I have created, ubuntu:base
ubuntu:base
Create a new dockerfile and use the existing image as your base.
FROM myName/myImage:latest ADD myFile.py bin/myFile.py
Then build the container:
docker build .