Skip to content

Commit

Permalink
Dockerfile (#56)
Browse files Browse the repository at this point in the history
* Dockerfile (#52)

* Added dockerfile

* Added readme for docker file
  • Loading branch information
LeonardSchmiester authored Oct 17, 2024
1 parent 35a68dd commit 6a00e1d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Berlin

RUN apt-get update \
&& apt-get install -y \
git \
python-is-python3 \
python3 \
python3-dev \
python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip3 install --no-cache-dir -U --upgrade pip wheel \
&& pip3 install --no-cache-dir pyphenopop
7 changes: 7 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# AMICI & pyPESTO with Docker

## Create image

```bash
cd <path to pyphenopop base directory>/docker && docker build -t $USER/pyphenopop:latest .
```

0 comments on commit 6a00e1d

Please sign in to comment.