Skip to content

Commit

Permalink
Add Dockerfile for SPECtate! (#196)
Browse files Browse the repository at this point in the history
* Add Dockerfile built off of pipenv image (https://github.com/pypa/pipenv/blob/master/Dockerfile)

* Add README note
  • Loading branch information
benjspriggs committed Jun 6, 2018
1 parent cbebd63 commit 3c761ba
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
@@ -0,0 +1,5 @@
FROM kennethreitz/pipenv

COPY . /app

CMD python3 mainCLI.py
15 changes: 15 additions & 0 deletions README.md
Expand Up @@ -45,6 +45,21 @@ pipenv install
```


#### Docker

This project has a Docker file. You can build an image
yourself and run SPECtate with it:

```shell
# build the image
docker build -t SPECtate:latest .
# run SPECtate
docker run SPECtate:latest --help
# would display the help text like you ran it yourself
# with python mainCLI.py --help
```


## Example CLI Usage

* Run an example configuration:
Expand Down

0 comments on commit 3c761ba

Please sign in to comment.