Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

15 lignes
259 B

  1. ARG PHP_VERSION
  2. FROM php:$PHP_VERSION-alpine
  3. RUN echo "date.timezone = UTC" > /usr/local/etc/php/conf.d/etc.ini
  4. ENV TERM xterm
  5. RUN apk add --update --no-cache \
  6. libcurl \
  7. bash \
  8. curl
  9. RUN docker-php-ext-install bcmath
  10. COPY ./project /projects/main