Skip to content
Snippets Groups Projects
Commit 5c19f663 authored by van den Berg's avatar van den Berg
Browse files

Add Docker file

parent 674b8c7c
No related branches found
No related tags found
No related merge requests found
Pipeline #2996 failed
FROM debian:buster-slim
RUN apt update && apt install python3-pip python3-dev cython3 zlib1g-dev python3-numpy libssl-dev python3-setuptools -y
RUN apt install -y libcurl4-openssl-dev
RUN apt install -y libbz2-dev liblzma-dev
COPY . vtools
RUN cd vtools && pip3 install .
......@@ -16,7 +16,7 @@ with open(readme_file) as desc_handle:
setup(
name="v-tools",
version="1.0.0-dev",
version="1.1.0-dev",
description="Various tools operating over VCF files",
long_description=long_desc,
author="Sander Bollen",
......@@ -31,7 +31,7 @@ setup(
python_requires=">=3.6",
zip_safe=False,
include_package_data=True,
setup_requires=["cython"],
setup_requires=["cython", "numpy"],
install_requires=[
"click",
"cyvcf2",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment