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.

Dockerfile 265 B

4 anni fa
1234567891011121314
  1. ARG PHP_VERSION=7.4.4
  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