fuc/vendor/sendgrid/sendgrid/Dockerfile
2025-02-23 13:30:57 +08:00

17 lines
335 B
Docker
Executable File

ARG version=latest
FROM php:$version
RUN apt-get update \
&& apt-get install -y zip
RUN curl -s https://getcomposer.org/installer | php \
&& mv composer.phar /usr/local/bin/composer
COPY prism/prism/nginx/cert.crt /usr/local/share/ca-certificates/cert.crt
RUN update-ca-certificates
WORKDIR /app
COPY . .
RUN make install