first commit

This commit is contained in:
2026-01-25 18:18:09 +08:00
commit 509312e604
8136 changed files with 2349298 additions and 0 deletions

View File

@ -0,0 +1,22 @@
FROM composer
FROM php:5.4-cli
RUN apt-get update && \
apt-get install -y \
git \
unzip
RUN docker-php-ext-install mbstring
COPY --from=composer /usr/bin/composer /usr/bin/composer
RUN composer global require hirak/prestissimo
WORKDIR /app
COPY composer.json .
RUN composer install --prefer-dist --no-interaction --no-ansi
COPY . .