Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add docker build #566

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Create and publish a Docker image
on:
push:
branches: ['main']
tags:
- ".*"
pull_request:
paths:
- Dockerfile
- .github/workflows/docker.yml
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@master
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta-drafter
uses: docker/metadata-action@master
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}/drafter

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@master
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}

- name: Build and push Docker image
uses: docker/build-push-action@master
with:
context: .
push: true
tags: ${{ steps.meta-drafter.outputs.tags }}
labels: ${{ steps.meta-drafter.outputs.labels }}
target: drafter-build
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository }}/drafter:latest

- name: Build and push Docker image
uses: docker/build-push-action@master
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: phpdraft
62 changes: 42 additions & 20 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,45 @@
FROM apiaryio/drafter:latest as drafter
FROM composer:latest as composer

FROM php:8.1-cli-alpine as build
RUN apk add --no-cache \
$PHPIZE_DEPS \
openssl-dev
RUN pecl install uopz \
&& docker-php-ext-enable uopz
RUN echo "phar.readonly = 0" > "$PHP_INI_DIR/conf.d/phar.ini"
COPY --from=composer /usr/bin/composer /usr/bin/composer
COPY . /usr/src/phpdraft
FROM debian:bullseye-slim AS drafter-build
RUN apt-get update && \
apt-get install --yes curl ca-certificates

RUN curl -L --fail -o drafter.tar.gz https://github.com/apiaryio/drafter/releases/download/v5.1.0/drafter-v5.1.0.tar.gz
RUN install -d /usr/src/drafter
RUN tar -xvf drafter.tar.gz --strip-components=1 --directory /usr/src/drafter

WORKDIR /usr/src/drafter

RUN apt-get install --yes cmake g++

RUN cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
RUN cmake --build build
RUN cmake --install build

CMD drafter

FROM composer:latest AS composer

WORKDIR /usr/src/phpdraft
RUN /usr/bin/composer install
RUN vendor/bin/phing phar-nightly
COPY build/out/phpdraft-nightly.phar /usr/local/bin/phpdraft
COPY . /usr/src/phpdraft/
RUN composer install --ignore-platform-req=ext-uopz

FROM php:8.3-cli-bullseye AS phpdraft-build



COPY --from=composer /usr/src/phpdraft /usr/src/phpdraft
WORKDIR /usr/src/phpdraft

RUN ./vendor/bin/phing phar-nightly
COPY /usr/src/phpdraft/build/out/phpdraft-nightly.phar /usr/local/bin/phpdraft
RUN chmod +x /usr/local/bin/phpdraft

FROM php:8.3-cli-bullseye AS phpdraft

FROM php:8.1-cli-alpine
LABEL maintainer="Sean Molenaar [email protected]"
RUN apk add --no-cache gcc
COPY --from=drafter /usr/local/bin/drafter /usr/local/bin/drafter
COPY --from=build /usr/local/bin/phpdraft /usr/local/bin/phpdraft
ENTRYPOINT /usr/local/bin/phpdraft -f /tmp/drafter/full_test.apib

COPY --from=phpdraft-build /usr/local/bin/phpdraft /usr/local/bin/phpdraft
COPY --from=drafter-build /usr/local/bin/drafter /usr/local/bin/drafter

RUN ls -al /usr/local/bin/phpdraft

CMD phpdraft
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
<exclude name="**/Readme.php"/>
</fileset>
</copy>
<copy todir="${project.basedir}/build/phar/phpdraft/src/QL">
<fileset dir="vendor/ql/uri-template/src">
<copy todir="${project.basedir}/build/phar/phpdraft/src/Rize">
<fileset dir="vendor/rize/uri-template/src">
<include name="**/*.php"/>
</fileset>
</copy>
Expand Down
Loading