Docker makes it easy to develop and deploy custom and consistent environments that include specific applications and dependencies. Docker calls these compilations Images. Docker images can be hosted and retrieved from private locations or from the official repository, Docker Hub . Create a Docker Image Permalink Create a new local image based on the latest Ubuntu Docker image. Although the repository already has a number of LAMP stack images available, we create one in this guide as an example of the process. Pull the latest Ubuntu image: docker pull ubuntu Create the new container, such that we can add our LAMP stack to Ubuntu. This example names the container lamp-server-template and adds the bash option to the docker command to enter the container in order to continue making changes: docker run --name lamp-server-template -it ubuntu:latest bash Install the lamp-server metapackage inside the container: apt-get install ...
TensorFlow API for .NET languages and tensorflow api for c#