You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 年之前
4 年之前
4 年之前
4 年之前
12345678910111213141516
  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 --from=composer /usr/bin/composer /usr/bin/composer
  11. COPY ./project /projects/main