Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3747403
D329.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D329.diff
View Options
diff --git a/novolume/Dockerfile b/novolume/Dockerfile
new file mode 100644
--- /dev/null
+++ b/novolume/Dockerfile
@@ -0,0 +1,95 @@
+#
+# Nasqueron - Base nginx / php-fpm image
+#
+
+FROM debian:jessie
+MAINTAINER Sébastien Santoro aka Dereckson <dereckson+nasqueron-docker@espace-win.org>
+
+#
+# Prepare the container
+#
+
+ENV PHP_VERSION 5.6.19
+ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=app --with-fpm-group=app
+ENV PHP_INI_DIR /usr/local/etc/php
+ENV PHP_BUILD_DEPS bzip2 \
+ file \
+ libbz2-dev \
+ libcurl4-openssl-dev \
+ libjpeg-dev \
+ libmcrypt-dev \
+ libpng12-dev \
+ libreadline6-dev \
+ libssl-dev \
+ libxslt1-dev \
+ libxml2-dev
+ENV LANG en_US.UTF-8
+ENV LC_ALL en_US.UTF-8
+
+RUN apt-get update && apt-get install -y ca-certificates curl libxml2 autoconf \
+ gcc libc-dev make pkg-config nginx-full \
+ runit nano less tmux wget git \
+ $PHP_BUILD_DEPS $PHP_EXTRA_BUILD_DEPS \
+ --no-install-recommends && rm -r /var/lib/apt/lists/*
+
+RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3 0BD78B5F97500D450838F95DFE857D9A90D90EC1 \
+ && mkdir -p $PHP_INI_DIR/conf.d \
+ && set -x \
+ && curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2 \
+ && curl -SL "http://php.net/get/php-$PHP_VERSION.tar.bz2.asc/from/this/mirror" -o php.tar.bz2.asc \
+ && gpg --verify php.tar.bz2.asc \
+ && mkdir -p /usr/src/php \
+ && tar -xof php.tar.bz2 -C /usr/src/php --strip-components=1 \
+ && rm php.tar.bz2* \
+ && cd /usr/src/php \
+ && ./configure \
+ --with-config-file-path="$PHP_INI_DIR" \
+ --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" \
+ $PHP_EXTRA_CONFIGURE_ARGS \
+ --disable-cgi \
+ --enable-mysqlnd \
+ --enable-bcmath \
+ --with-bz2 \
+ --enable-calendar \
+ --with-curl \
+ --with-gd \
+ --with-jpeg-dir \
+ --enable-gd-native-ttf \
+ --enable-mbstring \
+ --with-mcrypt \
+ --with-mysqli \
+ --with-pdo-mysql \
+ --enable-pcntl \
+ --with-openssl \
+ --with-xsl \
+ --with-readline \
+ --with-zlib \
+ --enable-zip \
+ && make -j"$(nproc)" \
+ && make install \
+ && { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
+ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $buildDeps \
+ && make clean \
+ && pecl install APCu-4.0.10 \
+ && cd /opt \
+ && curl -sS https://getcomposer.org/installer | php \
+ && ln -s /opt/composer.phar /usr/local/bin/composer
+
+RUN groupadd -r app -g 433 && \
+ mkdir /home/app && \
+ mkdir -p /var/wwwroot/default && \
+ useradd -u 431 -r -g app -d /home/app -s /sbin/nologin -c "Docker image user for web application" app && \
+ chown -R app:app /home/app /var/wwwroot/default && \
+ chmod 700 /home/app && \
+ chmod 711 /var/wwwroot/default
+
+COPY ../files /
+
+#
+# Docker properties
+#
+
+EXPOSE 80
+EXPOSE 443
+
+CMD ["/usr/local/sbin/runsvdir-init"]
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 01:55 (21 h, 29 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2248485
Default Alt Text
D329.diff (2 KB)
Attached To
Mode
D329: Dockerfile for novolume tag
Attached
Detach File
Event Timeline
Log In to Comment