Skip to content

Building docker images

Albert DeFusco edited this page Oct 14, 2019 · 1 revision

ae5-tools now supports building docker images from projects.

Note: all required files must be committed into the repository before creating the docker image.

Dockerfile

ae5-tools provides a minimal Dockerfile that will be copied to ~/.ae5/. You can replace the file at ~/.ae5 with your own custom version. You can change the base image, but you should not edit the file between lines 5 and 34.

condarc

By default the docker image will be created by installing packages from the Anaconda Repository at anaconda.com and anaconda.org. This is configured with the standard condarc file placed in ~/.ae5.

To configure access to your own AE5 repository change the /~.ae5/condarc file as shown

default_channels:
  - https://<ae5>.<company>.com/repository/conda/anaconda

channel_alias: https://<ae5>.<company>.com/repository/conda

channels:
  - defaults
Clone this wiki locally