diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 9ed140f..95a86d3 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -22,10 +22,6 @@ jobs: php: "8.3" - tag: "8.3" php: "8.3" - - tag: "8.2" - php: "8.2" - - tag: "8.1" - php: "8.1" steps: - uses: actions/checkout@v3 diff --git a/8.1/Dockerfile b/8.1/Dockerfile deleted file mode 100644 index 853d609..0000000 --- a/8.1/Dockerfile +++ /dev/null @@ -1,54 +0,0 @@ -FROM php:8.1-alpine3.15 - -# Add docker-php-extension-installer script -ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ - -# Install dependencies -RUN apk add --no-cache \ - bash \ - curl \ - freetype-dev \ - g++ \ - gcc \ - git \ - icu-dev \ - icu-libs \ - libc-dev \ - libzip-dev \ - libldap \ - make \ - mysql-client \ - nodejs \ - npm \ - oniguruma-dev \ - yarn \ - openssh-client \ - openldap-dev \ - postgresql-libs \ - rsync \ - zlib-dev - -# Install php extensions -RUN chmod +x /usr/local/bin/install-php-extensions && \ - install-php-extensions \ - @composer \ - redis-stable \ - imagick-stable \ - xdebug-stable \ - bcmath \ - calendar \ - exif \ - gd \ - intl \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - soap \ - ldap \ - zip - -# Add local and global vendor bin to PATH. -ENV PATH ./vendor/bin:/composer/vendor/bin:/root/.composer/vendor/bin:/usr/local/bin:$PATH - -# Setup working directory -WORKDIR /var/www diff --git a/8.2/Dockerfile b/8.2/Dockerfile deleted file mode 100644 index 8d5ac4c..0000000 --- a/8.2/Dockerfile +++ /dev/null @@ -1,54 +0,0 @@ -FROM php:8.2-alpine3.17 - -# Add docker-php-extension-installer script -ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ - -# Install dependencies -RUN apk add --no-cache \ - bash \ - curl \ - freetype-dev \ - g++ \ - gcc \ - git \ - icu-dev \ - icu-libs \ - libc-dev \ - libzip-dev \ - libldap \ - make \ - mysql-client \ - nodejs \ - npm \ - oniguruma-dev \ - yarn \ - openssh-client \ - openldap-dev \ - postgresql-libs \ - rsync \ - zlib-dev - -# Install php extensions -RUN chmod +x /usr/local/bin/install-php-extensions && \ - install-php-extensions \ - @composer \ - redis-stable \ - imagick-stable \ - xdebug-stable \ - bcmath \ - calendar \ - exif \ - gd \ - intl \ - pdo_mysql \ - pdo_pgsql \ - pcntl \ - soap \ - ldap \ - zip - -# Add local and global vendor bin to PATH. -ENV PATH ./vendor/bin:/composer/vendor/bin:/root/.composer/vendor/bin:/usr/local/bin:$PATH - -# Setup working directory -WORKDIR /var/www