mirror of
https://github.com/php-win-ext/pecl-memcache.git
synced 2026-03-24 09:02:11 +01:00
13 lines
201 B
Docker
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"]
|