Skip to content
Dockerfile 214 B
Newer Older
Pierre Ozoux's avatar
Pierre Ozoux committed
FROM wordpress:fpm
Pierre Ozoux's avatar
Pierre Ozoux committed

Pierre Ozoux's avatar
Pierre Ozoux committed
RUN apt-get update \
 && apt-get install -y --no-install-recommends \
      ssmtp \
 && rm -rf /var/lib/apt/lists/*
Pierre Ozoux's avatar
Pierre Ozoux committed

Pierre Ozoux's avatar
Pierre Ozoux committed
COPY run.sh /run.sh
COPY php.ini /usr/local/etc/php/php.ini
Pierre Ozoux's avatar
Pierre Ozoux committed

Pierre Ozoux's avatar
Pierre Ozoux committed
CMD ["/run.sh"]