You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
258 B
Docker
8 lines
258 B
Docker
1 year ago
|
FROM php:7.1-cli
|
||
|
MAINTAINER Jose Mª Avila <bichi5@gmail.com>
|
||
|
|
||
|
RUN apt-get update && apt-get install -y libcurl4-gnutls-dev \
|
||
|
&& docker-php-ext-install curl bcmath \
|
||
|
&& apt-get clean \
|
||
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
|