-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
23 changed files
with
367 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Build Images | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
phalcon_version: | ||
description: 'Framework version' | ||
required: true | ||
default: '5.2.1' | ||
|
||
jobs: | ||
push_github_container_register: | ||
uses: ./.github/workflows/github_container_registry.yml | ||
with: | ||
phalcon_version: ${{ github.event.inputs.phalcon_version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Test Dockerfile | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
path: | ||
description: 'Path of Dockerfile' | ||
required: true | ||
default: '8.2' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build with PHP variant ${{ github.event.input.path }} | ||
run: docker build --progress plain --file ${{ github.event.inputs.path }}/Dockerfile . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-cli-alpine3.16 | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-fpm-alpine3.16 | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-zts-alpine3.16 | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-cli-alpine3.17 | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-fpm-alpine3.17 | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-zts-alpine3.17 | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-apache-bullseye | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-cli-bullseye | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-fpm-bullseye | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-zts-bullseye | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM php:8.2-apache-buster | ||
|
||
ARG PHALCON_VERSION=5.2.1 | ||
|
||
RUN set -xe && \ | ||
cd / && \ | ||
docker-php-source extract && \ | ||
# Install ext-phalcon | ||
curl -sSLO https://github.com/phalcon/cphalcon/archive/v${PHALCON_VERSION}.tar.gz && \ | ||
tar xzf /v${PHALCON_VERSION}.tar.gz && \ | ||
docker-php-ext-install -j $(getconf _NPROCESSORS_ONLN) \ | ||
/cphalcon-${PHALCON_VERSION}/build/phalcon \ | ||
&& \ | ||
# Remove all temp files | ||
rm -r \ | ||
/v${PHALCON_VERSION}.tar.gz \ | ||
/cphalcon-${PHALCON_VERSION} \ | ||
&& \ | ||
docker-php-source delete && \ | ||
php -m | ||
|
||
COPY docker-phalcon-* /usr/local/bin/ |
Oops, something went wrong.