PHP Classes

File: samples/vanilla-php/Dockerfile

Recommend this page to a friend!
  Packages of Jonatas Matheus Gino de Souza   PHP Service Runner   samples/vanilla-php/Dockerfile   Download  
File: samples/vanilla-php/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Service Runner
Invoke services using payload data as parameters
Author: By
Last change:
Date: 10 days ago
Size: 240 bytes
 

Contents

Class file image Download
FROM php:8.4-cli-alpine RUN apk add --no-cache git unzip COPY --from=composer:latest /usr/bin/composer /usr/bin/composer WORKDIR /app COPY composer.json ./ RUN mkdir -p /service-runner COPY src/ src/ COPY public/ public/ EXPOSE 8080