0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.139.86.74


Current Path : /var/www/html/univadmin/sendgrid-php/
Upload File :
Current File : /var/www/html/univadmin/sendgrid-php/Dockerfile

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