Sign inSign up

jcuhpc/ncbi-blast

By jcuhpc

Updated about 8 years ago

ncbi-blast+ v2.6.0

Image
1

972

jcuhpc/ncbi-blast repository overview

Basic local alignment search tool. Contents of Dockerfile:

FROM ubuntu:18.04 MAINTAINER [email protected]

ENV PACKAGES ncbi-blast

ENV NCBI_BLAST_VERSION 2.6.0

WORKDIR /home

RUN apt-get update &&
apt-get upgrade -y &&
useradd -ms /bin/bash luser &&
printf "#!/bin/bash\nexport DEBIAN_FRONTEND=noninteractive\napt-get install -y tzdata\nln -fs /usr/share/zoneinfo/Australia/Brisbane /etc/localtime\ndpkg-reconfigure --frontend noninteractive tzdata\n" >tzinst && chmod 700 tzinst && ./tzinst && rm -f tzinst &&
apt-get install -y ncbi-blast+ &&
apt-get clean

USER luser WORKDIR /home/luser

Tag summary

Content type

Image

Digest

Size

103.3 MB

Last updated

about 8 years ago

docker pull jcuhpc/ncbi-blast