· Download · Edit · Report · Website
AutoDock Vina is a turnkey computational docking program that is based on a simple scoring function and rapid gradient-optimization conformational search.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM ubuntu:20.04
RUN apt-get update \
&& apt-get upgrade --yes \
&& apt-get install --yes --no-install-recommends \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /opt
RUN wget --no-check-certificate https://github.com/ccsb-scripps/AutoDock-Vina/releases/download/v1.2.3/vina_1.2.3_linux_x86_64 \
&& chmod +x vina_1.2.3_linux_x86_64
RUN ln -s /opt/vina_1.2.3_linux_x86_64 /usr/local/bin/vina