Dockerfile因E而失败:未找到y的版本x

时间:2015-09-04 06:11:49

标签: docker bioinformatics apt-get dockerfile

我编写了以下Dockerfile:

FROM ubuntu:14.04

MAINTAINER X

# Setup OS
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get -y install python-software-properties
RUN apt-get -y install software-properties-common
RUN add-apt-repository ppa:nebc/bio-linux
RUN apt-get update

RUN apt-get install -y wget

RUN apt-get install -y python-setuptools python-docutils python-pip
#RUN pip install snakemake

RUN apt-get install -y emboss=6.6.0+dfsg-2biolinux1
RUN apt-get install -y hmmer=3.1b1-0biolinux1 
RUN apt-get install -y lastz=1.02.00-3biolinux1.1 
RUN apt-get install -y ncbi-blast+=2.2.28-3ubuntu1 

不幸的是,我遇到了以下错误,但列出的是here

E: Version '3.1b1-0biolinux1' for 'hmmer' was not found
E: Version '2.2.28-3ubuntu1' for 'ncbi-blast+' was not found

如何使用特定版本安装上述软件包?

0 个答案:

没有答案