2015-11-06 93 views
1

我有一個Dockerfile,在其中爲php-fpm構建一個容器。我拉入了我的基礎Ubuntu的鏡像,它開始工作,但在嘗試安裝php-fpm和php5-intl時由於未滿足的依賴關係而退出。Dockerfile php-fpm未滿足的依賴關係

enter image description here

任何人都可以檢查了我的文件,並發現任何明顯請:)

FROM phalcon/ubuntu 

MAINTAINER bob <[email protected]> 

RUN echo "deb http://archive.ubuntu.com/ubuntu/ vivid universe" >> /etc/apt/sources.list 

# Install software requirements 
RUN apt-get update && \ 
apt-get install -y software-properties-common && \ 
add-apt-repository -y ppa:ondrej/php5 && \ 
add-apt-repository -y ppa:nginx/stable && \ 
apt-get update -y --force-yes && \ 
apt-get upgrade -y --force-yes && \ 
BUILD_PACKAGES="supervisor php5-fpm git php5-mysql php5-curl php5-gd php5-intl php5-mcrypt php5-memcache php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-pgsql php5-mongo php5-dev pwgen" && \ 
apt-get -y --force-yes install $BUILD_PACKAGES && \ 
apt-get remove --purge -y software-properties-common && \ 
apt-get autoremove -y && \ 
apt-get clean && \ 
apt-get autoclean 

# Add PHP config. 
ADD php-fpm.conf /etc/php-fpm.conf 

# Define mountable directories. 
VOLUME ["/etc/php-fpm.d", "/var/log/php-fpm", "/srv/http"] 

# Define entrypoint. 
ENTRYPOINT ["php-fpm"] 

# Expose ports. 
EXPOSE 9000 

回答

相關問題