Files
pecl-memcache/Dockerfile
2019-12-19 12:11:23 +01:00

13 lines
201 B
Docker

ARG PHP_IMAGE=php:7.4-rc
FROM $PHP_IMAGE
RUN apt-get update && apt-get install -y \
git \
zlib1g-dev \
memcached ;
COPY docker/host.conf /etc/host.conf
COPY docker/start.sh /
CMD ["/start.sh"]