zendesk/zendesk_api_client_php

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM php:7.4-cli

# OS requirements for PHP
RUN apt-get update && apt-get install -y git unzip

# PHP requirements
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
WORKDIR /app
COPY composer.json composer.lock /app/
RUN composer install

COPY . /app