PHP Classes

File: Dockerfile

Recommend this page to a friend!
  Packages of Andraž   BB   Dockerfile   Download  
File: Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: BB
Badminton tournament management application
Author: By
Last change:
Date: 15 days ago
Size: 475 bytes
 

Contents

Class file image Download
FROM composer:2 AS composer FROM dunglas/frankenphp # Namesti potrebne PHP raz?iritve RUN install-php-extensions intl zip \ && apt-get update \ && apt-get install -y --no-install-recommends git unzip nodejs npm \ && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY . /app # Kopiraj composer iz prvega stage-a COPY --from=composer /usr/bin/composer /usr/bin/composer # Expose Caddy port EXPOSE 80 CMD ["frankenphp", "run", "--config", "/etc/caddy/Caddyfile"]