Tag: xamarin

在安装了Mono的Ubuntu映像的Dockerfile中构build时出错

我有下面的docker文件,我试图用来build立一个Ubuntu的单声道图像。 FROM ubuntu:14.04 MAINTAINER John Smith <John.Smith@gmail.com> RUN sudo apt-get update RUN sudo /bin/bash -l -c apt-get install wget RUN sudo /bin/bash -l -c apt-get http://download.mono-project.com/repo/xamarin.gpg RUN sudo apt-key add xamarin.gpg RUN sudo echo "deb http://download.mono-project.com/repo/debian wheezy main" > /etc/apt/sources.list.d/mono-xamarin.list RUN sudo apt-get update RUN sudo apt-get install mono-complete 当我运行下面的docker build命令… docker build -t="test/mono" . […]