Revision fd23bf988b92599f4641965d882fd22151147f75 authored by Jerome Kelleher on 11 January 2021, 12:21:09 UTC, committed by Jerome Kelleher on 11 January 2021, 12:21:09 UTC
Removes the Demography.sample() method in favour of a more expressive
samples argument in sim_ancestry.
1 parent 9ff6368
Raw File
Dockerfile
#maintainer Ariella Gladstein
#organization tskit-dev
#application "Msprime: A reimplementation of Hudson's classical ms simulator for modern data sets."

FROM ubuntu:18.04

# Set the working directory to /app
WORKDIR /app

# Copy the current directory contents into the container at /app
COPY . /app

RUN apt-get update && apt-get install -y --no-install-recommends \
            python3 \
            python3-dev \
            python3-pip \
            libgsl-dev \
            build-essential \
            python3-wheel \
            git \
            && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*

RUN pip3 install --upgrade setuptools
RUN pip3 install .
back to top