36 lines
1.1 KiB
Docker
36 lines
1.1 KiB
Docker
# Use a PHP runtime as a parent image
|
|
FROM §FRAMEWORK_REPOSITORY§/§FRAMEWORK_IMAGE§:§FRAMEWORK_VERSION§-§FRAMEWORK_TYPE§
|
|
|
|
# Set the working directory to /app
|
|
WORKDIR /§PROJECT_BUILDNAME§
|
|
|
|
# Install XDebug
|
|
RUN pecl install xdebug | tail -n 1 | awk -F"\"" '{print $2}' > /usr/local/etc/php/conf.d/xdebug.ini
|
|
RUN echo "\n\n[XDebug]\nxdebug.mode=debug\nxdebug.start_with_request=yes\nxdebug.client_host = §DEBUG_REMOTE_IP§\nxdebug.client_port = §DEBUG_REMOTE_PORT§\n" >> /usr/local/etc/php/conf.d/xdebug.ini
|
|
|
|
# Install Memcached
|
|
RUN apt-get update && apt-get install -y libmemcached-dev zlib1g-dev \
|
|
&& pecl install memcached-3.1.5 \
|
|
&& docker-php-ext-enable memcached
|
|
|
|
# Install SOAP
|
|
RUN docker-php-ext-install soap
|
|
|
|
# Copy the current directory contents into the container at /app
|
|
COPY ./app /§PROJECT_BUILDNAME§
|
|
|
|
COPY ./version /§PROJECT_BUILDNAME§
|
|
|
|
COPY ./config /§PROJECT_BUILDNAME§
|
|
|
|
COPY ./install /§PROJECT_BUILDNAME§
|
|
|
|
RUN chmod 744 /§PROJECT_BUILDNAME§/install
|
|
|
|
RUN /§PROJECT_BUILDNAME§/install
|
|
|
|
ENTRYPOINT ["§PROJECT_BUILDNAME§-entrypoint"]
|
|
|
|
# Make port 80 available to the world outside this container
|
|
EXPOSE 80
|