25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ARG PHP_VERSION
- FROM php:$PHP_VERSION-alpine
-
- RUN echo "date.timezone = UTC" > /usr/local/etc/php/conf.d/etc.ini
- ENV TERM xterm
-
- RUN apk add --update --no-cache \
- libcurl \
- bash \
- curl
-
- RUN docker-php-ext-install bcmath
-
- COPY ./project /projects/main
|