Skip to content

Commit

Permalink
added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
josejimenezluna committed Jul 9, 2021
1 parent bb5aef0 commit dc5af46
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM gpuci/miniconda-cuda:11.2-devel-ubuntu20.04
WORKDIR /usr/src/app

# install delfta
RUN https://github.com/josejimenezluna/delfta.git

RUN cd delfta && make
RUN conda init
RUN echo 'conda activate delfta' >> ~/.bashrc
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ conda activate delfta
```


### Installation via Docker

We also provide a CUDA-enabled Dockerfile for easier management. Build the container by

```bash
docker build -t delfta .
```

Attach to the provided container with:

```bash
docker run -it delfta bash
```

## Quick start

```python
Expand Down

0 comments on commit dc5af46

Please sign in to comment.