forked from RuleWorld/PyBioNetGen
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
Latest commit
15 lines (14 loc) · 520 Bytes
/
Copy pathDockerfile
File metadata and controls
15 lines (14 loc) · 520 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM continuumio/anaconda3
LABEL Ali Sinan Saglam <als251@pitt.edu>
ENV PS1="\[\e[0;33m\]|> bionetgen <| \[\e[1;35m\]\W\[\e[0m\]\[\e[0m\]# "
LABEL org.opencontainers.image.source=https://github.com/RuleWorld/PyBioNetGen
LABEL org.opencontainers.image.description="PyBNG container"
LABEL org.opencontainers.image.licenses=MIT
RUN apt-get update && apt-get install -y \
libncurses-dev
WORKDIR /src
COPY . /src
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install -e .
WORKDIR /
ENTRYPOINT ["bionetgen"]