25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
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