├── .dockerignore ├── .github └── workflows │ └── build.yml ├── Dockerfile └── README.md /.dockerignore: -------------------------------------------------------------------------------- 1 | # no build context 2 | * 3 | 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNNDSC/ubuntu-python3/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNNDSC/ubuntu-python3/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FNNDSC/ubuntu-python3/HEAD/README.md --------------------------------------------------------------------------------