Skip to content

Commit

Permalink
wip: add gha for images
Browse files Browse the repository at this point in the history
  • Loading branch information
vayan committed Apr 17, 2024
1 parent 57c7616 commit d4cbe25
Show file tree
Hide file tree
Showing 6 changed files with 237 additions and 0 deletions.
135 changes: 135 additions & 0 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
on:
push:
branches: [ "add-gha-docker-images" ]
workflow_dispatch:
inputs:
version:
description: version of the images
type: string
required: true
default: "1.0" # removeme
grpcio_image_version:
description: version of the grpcio images
type: string
required: true
default: 1.0.0 # removeme
psycopg_version:
description: psycopg version
type: string
required: true
default: 3.1
image_registry:
description: address of the registry
type: string
required: true
default: vayan # removeme

jobs:
alpy_base:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8.18", "3.9.18", "3.10.13", "3.11.8", "3.12.2" ]
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}

- name: Set config variable env
run: |
PYTHON_VERSION=${{ matrix.python-version }}
echo "ALPY_VERSION=${PYTHON_VERSION:0:3}" >> $GITHUB_ENV
echo "HASH_VERSION=${{ hashFiles('requirements.txt', 'docker/alpy/base.Dockerfile') }}" >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: docker/alpy/base.Dockerfile
network: host
no-cache: true
build-args: |
PYTHON_VERSION=${{ matrix.python-version }}
tags: |
${{ inputs.image_registry }}/grpcio-alpy${{ env.ALPY_VERSION }}-base:${{ inputs.grpcio_image_version }}-${{ env.HASH_VERSION }}
${{ inputs.image_registry }}/grpcio-alpy${{ env.ALPY_VERSION }}-base:latest
alpy:
runs-on: ubuntu-latest
needs: [ alpy_base ]
strategy:
matrix:
alpy-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}

- name: Set config variable env
run: |
echo "IMG_FULL=${{ inputs.image_registry }}/protoplasm:${{ inputs.version }}-alpy${{ matrix.alpy-version }} >> $GITHUB_ENV
echo "HASH_VERSION=${{ hashFiles('requirements.txt', 'docker/alpy/base.Dockerfile') }}" >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: docker/alpy/Dockerfile
network: host
no-cache: true
build-args: |
PACKAGE_VERSION=${{ inputs.version }}
BASE_IMAGE="${{ inputs.image_registry }}/grpcio-alpy${{ matrix.alpy-version }}-base:${{ inputs.grpcio_image_version }}-${{ env.HASH_VERSION }}"
tags: |
${{ env.IMG_FULL }}
${{ env.IMG }}:latest-alpy${{ env.ALPY_VERSION }}
alpy_psycopg:
runs-on: ubuntu-latest
needs: [ alpy_base ]
strategy:
matrix:
alpy-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}

- name: Set config variable env
run: |
echo "IMG_FULL=${{ inputs.image_registry }}/protoplasm:${{ inputs.version }}-alpy${{ matrix.alpy-version }}-psycopg${{ inputs.psycopg_version }} >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: docker/alpy/psycopg.Dockerfile
network: host
no-cache: true
build-args: |
BASE_IMAGE_TAG=${{ inputs.version }}-alpy${{ matrix.alpy-version }}
PSYCOPG_VERSION=${{ inputs.psycopg_version }}
tags: |
${{ env.IMG_FULL }}
# add others
21 changes: 21 additions & 0 deletions docker/alpy/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
ARG BASE_IMAGE
FROM ${BASE_IMAGE}

ARG PACKAGE_VERSION
ENV PACKAGE_VERSION=${PACKAGE_VERSION}

RUN echo Package Version is $PACKAGE_VERSION \
&& echo Package Version in loops is ${PACKAGE_VERSION} \
&& echo "Package Version in loops and string is ${PACKAGE_VERSION}" \
&& apk add --update --no-cache --virtual .build-deps \
gcc \
linux-headers \
make \
musl-dev \
python3-dev \
libffi-dev \
g++ \
&& python -m pip install --upgrade pip \
&& python -m pip install --upgrade cryptography \
&& python -m pip install --upgrade "protoplasm==${PACKAGE_VERSION}.*" --extra-index-url https://pypi.kube.ccptools.cc/pypi \
&& apk del .build-deps
19 changes: 19 additions & 0 deletions docker/alpy/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
ARG PYTHON_VERSION
FROM python:${PYTHON_VERSION}-alpine3.19

COPY requirements.txt .

RUN apk add --update --no-cache --virtual .build-deps \
gcc \
linux-headers \
make \
musl-dev \
python3-dev \
libffi-dev \
g++ \
&& python -m pip install --upgrade pip \
&& python -m pip install --upgrade cryptography \
&& python -m pip install --upgrade -r requirements.txt \
&& apk del .build-deps \
&& rm -f requirements.txt \
&& apk add --update --no-cache libstdc++
19 changes: 19 additions & 0 deletions docker/alpy/psycopg.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
ARG BASE_IMAGE_TAG
FROM gitlab.ccptools.cc:5000/packages/protoplasm/protoplasm:${BASE_IMAGE_TAG}

ARG PSYCOPG_VERSION
ENV PSYCOPG_VERSION=${PSYCOPG_VERSION}

RUN apk add --update --no-cache --virtual .build-deps \
gcc \
linux-headers \
make \
musl-dev \
python3-dev \
libffi-dev \
g++ \
postgresql-dev \
&& python -m pip install --upgrade pip \
&& python -m pip install --upgrade "psycopg[binary]==${PSYCOPG_VERSION}.*" \
&& apk del .build-deps \
&& apk add --update --no-cache libpq
14 changes: 14 additions & 0 deletions docker/depy/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
ARG PYTHON_VERSION
FROM python:${PYTHON_VERSION}-slim-bookworm

ARG PACKAGE_VERSION
ENV PACKAGE_VERSION=${PACKAGE_VERSION}

# Stuff and libraries
RUN apt-get update \
&& apt-get install -y \
apt-transport-https \
python3-dev \
--no-install-recommends \
&& python -m pip install --upgrade pip \
&& python -m pip install --upgrade "protoplasm==${PACKAGE_VERSION}.*" --extra-index-url https://pypi.kube.ccptools.cc/pypi
29 changes: 29 additions & 0 deletions docker/depy/pyodbc.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
ARG BASE_IMAGE_TAG
FROM gitlab.ccptools.cc:5000/packages/protoplasm/protoplasm:${BASE_IMAGE_TAG}

ARG PYODBC_VERSION
ENV PYODBC_VERSION=${PYODBC_VERSION}

RUN apt-get update \
&& ACCEPT_EULA=Y apt-get install -y curl \
gnupg \
&& apt-get clean \
&& apt-get autoremove --purge

# Get some keys that seems proper
RUN curl -fsSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg

# Download appropriate package for the OS version - Debian 12
RUN curl https://packages.microsoft.com/config/debian/12/prod.list > /etc/apt/sources.list.d/mssql-release.list

# Install the drivers, tools, Dev libraries & necessary locales
RUN apt-get update \
&& ACCEPT_EULA=Y apt-get install -y msodbcsql17 \
unixodbc-dev \
python3-dev \
g++ \
&& python -m pip install "pyodbc==${PYODBC_VERSION}.*" \
&& apt-get purge -y --auto-remove unixodbc-dev \
g++ \
&& apt-get -y clean \
&& apt-get autoremove -y --purge \

0 comments on commit d4cbe25

Please sign in to comment.