Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
pwwang committed Sep 29, 2020
1 parent dc98737 commit d00553a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM debian:buster-slim

RUN apt-get update \
&& apt-get install --yes --no-install-recommends r-cran-ggplot2 \
build-essential libz-dev libcurl4-openssl-dev libssl-dev \
libbz2-dev liblzma-dev \
python3 python3-wheel python3-dev python3-setuptools python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN python3 -m pip install poetry

WORKDIR /vcfstats
COPY . /vcfstats/

RUN poetry config virtualenvs.create false \
&& poetry install

0 comments on commit d00553a

Please sign in to comment.