Skip to content

Commit

Permalink
ading Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoch committed Sep 2, 2017
1 parent 6cfa3b0 commit f1dda4c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM continuumio/miniconda3

RUN apt-get update && apt-get install -y wget git
RUN pip install git+git://github.com/pydicom/pydicom.git@affb1cf10c6be2aca311c29ddddc622f8bd1f810
RUN mkdir /code
ADD . /code
WORKDIR /code
RUN python /code/setup.py install

RUN chmod 0755 /opt/conda/bin/deid
ENTRYPOINT '/opt/conda/bin/deid'
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ These are basic Python based tools for working with medical images and text, spe


## Installation

### Local
For the stable release, install via pip:

```
Expand All @@ -22,5 +24,12 @@ For the development version, install from Github:
pip install git+git://github.com/pydicom/deid
```

### Docker

```
docker build -t pydicom/deid .
docker run pydicom/deid --help
```

## Issues
If you have an issue, or want to request a feature, please do so on our [issues board](https://www.github.com/pydicom/deid/issues)
2 changes: 0 additions & 2 deletions deid/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@

INSTALL_REQUIRES = (

('flask', {'min_version': '0.12'}),
('flask-restful', {'min_version': None}),
('requests', {'min_version': '2.12.4'}),
('retrying', {'min_version': '1.3.3'}),
('simplejson', {'min_version': '3.10.0'}),
Expand Down

0 comments on commit f1dda4c

Please sign in to comment.