Skip to content
Snippets Groups Projects
Dockerfile 214 B
Newer Older
FROM wordpress:fpm
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

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

CMD ["/run.sh"]