mirror of
https://github.com/ivuorinen/docker-php-with-imagick.git
synced 2026-02-14 02:48:49 +00:00
Added pipefail, linting, docs
This commit is contained in:
27
.github/workflows/docker-image.yml
vendored
27
.github/workflows/docker-image.yml
vendored
@@ -3,24 +3,23 @@ name: Docker Image CI
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '15 * 1,15 * *' # Runs only on default branch
|
- cron: "15 * 1,15 * *" # Runs only on default branch
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Publish to Registry
|
- name: Publish to Registry
|
||||||
uses: elgohr/Publish-Docker-Github-Action@v5
|
uses: elgohr/Publish-Docker-Github-Action@v5
|
||||||
with:
|
with:
|
||||||
name: ivuorinen/docker-php-with-imagick
|
name: ivuorinen/docker-php-with-imagick
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
default_branch: main
|
default_branch: main
|
||||||
tags: "latest,php74"
|
tags: "latest,php74"
|
||||||
cache: ${{ github.event_name != 'schedule' }}
|
cache: ${{ github.event_name != 'schedule' }}
|
||||||
|
|||||||
13
.github/workflows/docker-publish.yml
vendored
13
.github/workflows/docker-publish.yml
vendored
@@ -7,13 +7,13 @@ name: GitHub Docker Registry Build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '41 1 * * *'
|
- cron: "41 1 * * *"
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: ["main"]
|
||||||
# Publish semver tags as releases.
|
# Publish semver tags as releases.
|
||||||
tags: [ 'v*.*.*' ]
|
tags: ["v*.*.*"]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: ["main"]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Use docker.io for Docker Hub if empty
|
# Use docker.io for Docker Hub if empty
|
||||||
@@ -21,10 +21,8 @@ env:
|
|||||||
# github.repository as <account>/<repo>
|
# github.repository as <account>/<repo>
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -43,8 +41,7 @@ jobs:
|
|||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
uses: sigstore/cosign-installer@main
|
uses: sigstore/cosign-installer@main
|
||||||
with:
|
with:
|
||||||
cosign-release: 'v1.13.1'
|
cosign-release: "v1.13.1"
|
||||||
|
|
||||||
|
|
||||||
# Workaround: https://github.com/docker/build-push-action/issues/461
|
# Workaround: https://github.com/docker/build-push-action/issues/461
|
||||||
- name: Setup Docker buildx
|
- name: Setup Docker buildx
|
||||||
|
|||||||
37
Dockerfile
37
Dockerfile
@@ -1,21 +1,22 @@
|
|||||||
FROM php:7.4
|
FROM php:7.4
|
||||||
|
|
||||||
RUN echo "" \
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
&& docker-php-ext-install bcmath \
|
|
||||||
&& docker-php-ext-configure pcntl \
|
RUN echo "" \
|
||||||
&& docker-php-ext-install pcntl \
|
&& docker-php-ext-install bcmath \
|
||||||
&& apt-get update \
|
&& docker-php-ext-configure pcntl \
|
||||||
&& apt-get install -y \
|
&& docker-php-ext-install pcntl \
|
||||||
libicu-dev libxml2-dev libfreetype6-dev libjpeg62-turbo-dev \
|
&& apt-get update \
|
||||||
libpng-dev libonig-dev libmagickwand-dev python-dev unzip \
|
&& apt-get install -y \
|
||||||
&& apt-get clean \
|
libicu-dev libxml2-dev libfreetype6-dev libjpeg62-turbo-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
libpng-dev libonig-dev libmagickwand-dev python-dev unzip \
|
||||||
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
&& apt-get clean \
|
||||||
&& docker-php-ext-install -j$(nproc) intl mbstring pdo xml gd exif bcmath \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& yes '' | pecl install imagick \
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
||||||
&& docker-php-ext-enable imagick \
|
&& docker-php-ext-install -j$(nproc) intl mbstring pdo xml gd exif bcmath \
|
||||||
&& curl -sS https://getcomposer.org/installer \
|
&& pecl install imagick && docker-php-ext-enable imagick \
|
||||||
| php -- --install-dir=/usr/local/bin --filename=composer
|
&& curl -sS https://getcomposer.org/installer \
|
||||||
RUN php --version \
|
| php -- --install-dir=/usr/local/bin --filename=composer
|
||||||
&& composer --version
|
RUN php --version \
|
||||||
|
&& composer --version
|
||||||
|
|
||||||
|
|||||||
18
README.md
18
README.md
@@ -1,2 +1,20 @@
|
|||||||
# docker-php-with-imagick
|
# docker-php-with-imagick
|
||||||
|
|
||||||
PHP 7.4 with imagick for specific purposes
|
PHP 7.4 with imagick for specific purposes
|
||||||
|
|
||||||
|
## Building locally
|
||||||
|
|
||||||
|
### Setup docker buildx (run once)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run --privileged --rm tonistiigi/binfmt --install all
|
||||||
|
docker buildx create --use
|
||||||
|
```
|
||||||
|
|
||||||
|
### Build the image
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker buildx build --platform linux/amd64,linux/arm64 .
|
||||||
|
```
|
||||||
|
|
||||||
|
Example builds for both amd64 and arm64
|
||||||
|
|||||||
Reference in New Issue
Block a user