10 lines
188 B
Docker
10 lines
188 B
Docker
FROM dunglas/frankenphp:1-php8.3
|
|
|
|
RUN install-php-extensions yaml
|
|
|
|
WORKDIR /app
|
|
COPY app ./app
|
|
COPY conf ./conf
|
|
COPY manifest.yaml ./manifest.yaml
|
|
COPY Caddyfile /etc/frankenphp/Caddyfile
|