Update README.md

This commit is contained in:
Kevin Bock 2020-06-02 15:45:36 -04:00 committed by GitHub
parent ecebfdd44c
commit b27ea50522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 1 deletions

View File

@ -1,7 +1,20 @@
# Geneva Docker # Geneva Docker
This implements the Docker base image for Geneva. You can run the base image with the below python: This implements the Docker base image for Geneva. Each docker container used by the evaluator runs out of the same base container.
To build it:
``` ```
docker build -t base:latest -f docker/Dockerfile .
```
Optionally, to manually run/inspect the docker image to explore the image, run:
```
docker run -it base
```
You can run the base image with the below python:
```python
import os import os
import docker import docker