diff options
| author | Daniel Weipert <git@mail.dweipert.de> | 2026-04-10 22:38:59 +0200 |
|---|---|---|
| committer | Daniel Weipert <git@mail.dweipert.de> | 2026-04-10 22:38:59 +0200 |
| commit | 875b9ece501de5937993c41a83c44f8ea59897d0 (patch) | |
| tree | 04579bcb80c9fdb43502d178b3ee145a818afe28 /Dockerfile | |
| parent | 74a524ded12c6527745957ac219e1ca34828aa6c (diff) | |
register and login to Cinny client
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d481b5a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,29 @@ +FROM composer/composer:latest-bin AS composer + +WORKDIR /app + +COPY composer.* /app + +RUN composer install \ + --no-interaction \ + --no-plugins \ + --no-scripts \ + --no-dev \ + && composer dump-autoload -o + + +FROM php:fpm-alpine + +RUN : \ + && apk add libpq-dev icu-dev icu-data-full \ + && docker-php-ext-install pdo_pgsql intl + +WORKDIR /usr/src/app + +COPY --from=composer /app/vendor /usr/src/app/vendor + +COPY src /usr/src/app/src +COPY public /usr/src/app/public +COPY migrations /usr/src/app/migrations +COPY bin/db-migrate /usr/src/app/bin/db-migrate +COPY matrix-specification /usr/src/app/matrix-specification |
