Skip to content

Commit

Permalink
feat: add docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
SMillerDev committed Mar 14, 2024
1 parent 425f2e1 commit a36f468
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 20 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Create and publish a Docker image
on:
push:
branches: ['release']
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: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

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

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@master
with:
images: ghcr.io/${{ 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

- 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
58 changes: 38 additions & 20 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,41 @@
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

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

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

FROM php:8.1-cli-alpine
COPY . /usr/src/phpdraft/

COPY --from=composer /usr/bin/composer /usr/bin/composer
RUN composer install --ignore-platform-req=ext-uopz
RUN ./vendor/bin/phing phar
RUN chmod +x /usr/local/bin/phpdraft

FROM php:8.3-cli-bullseye AS phpdraft

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/src/phpdraft/build/out/phpdraft-2.*.phar /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

0 comments on commit a36f468

Please sign in to comment.