gpt4 book ai didi

docker - 错误 : Build process returned exit code 137 during Docker build on Tutum

转载 作者:IT老高 更新时间:2023-10-28 21:42:42 24 4
gpt4 key购买 nike

我在 Tutum 上设置了一个新的存储库,链接到 Github 存储库。该项目在我的本地机器上成功构建,但在 4 小时后在 Tutum 上失败并给我以下日志。

Step 27 : ENTRYPOINT /www/run.sh
---> Running in 666e1e87a660
---> eeb9646f9317
Removing intermediate container 666e1e87a660
Successfully built eeb9646f9317
Creating builder1769_sut_1
[Thu Jan 07 17:42:45.675789 2016] [mpm_prefork:notice] [pid 8] AH00163: Apache/2.4.10 (Debian) PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 07 17:42:45.675813 2016] [core:notice] [pid 8] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND'
ERROR: Build process returned exit code 137
builder-1769: Terminating...
builder-1769: Terminated
ERROR: Build in 'dockerize' (bcf1bce8) failed in 4:00:52

我的 Dockerfile 的最后一步 27 已经完成,Docker 随即返回消息“成功构建 eeb9646f9317”,但也返回“错误:构建过程返回退出代码 137”。

这是我的 Dockerfile

FROM php:5.5-apache

#Add Servername to avoid warning
RUN sed -i '/ServerName localhost/ d' /etc/apache2/apache2.conf && sed -i '/Listen 80/ a\ServerName localhost' /etc/apache2/apache2.conf

#Add apt packages list for Firefox
RUN echo "deb http://packages.linuxmint.com debian import" >> /etc/apt/sources.list

RUN apt-get update \
&& apt-get install -q -y --force-yes libpng-dev php5-imagick php5-curl php5-mysql php5-ssh2 vim wkhtmltopdf curl nodejs npm nodejs-legacy ruby-full default-jre firefox xvfb \
git zlib1g-dev libicu-dev g++ libmcrypt-dev libxml2-dev \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSL https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer \
&& docker-php-ext-configure intl \
&& docker-php-ext-install gd zip pdo_mysql soap mbstring intl mcrypt bcmath \
&& a2enmod expires headers rewrite \
&& pecl install apcu-4.0.10 \
&& php5enmod mcrypt pdo_mysql \
&& echo "date.timezone=Europe/Paris" >> /usr/local/etc/php/php.ini \
&& echo "short_open_tag=Off" >> /usr/local/etc/php/php.ini \
&& echo "memory_limit=-1" >> /usr/local/etc/php/php.ini \
&& echo "upload_max_filesize=6M" >> /usr/local/etc/php/php.ini \
&& echo "extension=apcu.so" >> /usr/local/etc/php/php.ini

#Firefox
ENV FIREFOX_MINOR 34.0.5
RUN [ -e /usr/bin/firefox ] && rm /usr/bin/firefox
ADD https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${FIREFOX_MINOR}/linux-x86_64/en-US/firefox-${FIREFOX_MINOR}.tar.bz2 /tmp/
RUN apt-get install -q -y libdbus-glib-1-2
RUN tar -xvjf /tmp/firefox-${FIREFOX_MINOR}.tar.bz2 -C /opt/
RUN chmod -R +x /opt/firefox/
RUN ln -s /opt/firefox/firefox /usr/bin/firefox

ADD .docker/vhost.conf /etc/apache2/sites-available/wweeddoo.conf
RUN a2ensite wweeddoo.conf
RUN sed -i '/DocumentRoot \/var\/www\/html/ d' /etc/apache2/apache2.conf
RUN sed -i 's/var\/www/www/g' /etc/apache2/apache2.conf

ADD . /www
WORKDIR /www

# Install dependencies
RUN mkdir -p app/sessions var/cache var/logs
RUN chown -R www-data app/sessions var/cache var/logs
RUN npm install -g bower
RUN npm install -g less
RUN gem install sass
RUN composer config -g github-oauth.github.com ff040c19e1b0ae0a4b97c0a140272ec89c8da161
RUN composer install --optimize-autoloader --prefer-dist

# Add run script
ADD .docker/run.sh /www/run.sh
RUN chmod +x /www/run.sh

ENTRYPOINT ["/www/run.sh"]

还有我的 run.sh

chown -R www-data var/cache var/logs app/sessions
/usr/sbin/apache2ctl -D FOREGROUND

有什么想法吗?

最佳答案

在 Mac 中,为了解决这个问题,您可能想尝试在 Docker > Preference > Memory 中更改内存分配。大多数情况下增加都会起作用。

关于docker - 错误 : Build process returned exit code 137 during Docker build on Tutum,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34674325/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com