Skip to content

Commit

Permalink
build open_clip as container and publish on push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeadie committed Apr 12, 2023
1 parent 37b729b commit ff54066
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 0 deletions.
80 changes: 80 additions & 0 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Create and publish a Docker image

on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'CITATION.cff'
- 'LICENSE'
- '.gitignore'
- 'docs/**'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'CITATION.cff'
- 'LICENSE'
- '.gitignore'
- 'docs/**'
workflow_dispatch:
inputs:
manual_revision_reference:
required: false
type: string
manual_revision_test:
required: false
type: string

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@v3

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

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

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

- name: Build & push training Docker image
id: build-and-push-training
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: Dockerfile.training

- name: Build and push test Docker image
id: build-and-push-test
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}-test
labels: ${{ steps.meta.outputs.labels }}
file: Dockerfile.test
12 changes: 12 additions & 0 deletions Dockerfile.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.8-slim-buster
RUN apt-get update && apt-get install -y make

WORKDIR /app

COPY Makefile .
COPY requirements-test.txt .

RUN make install-test && make test

COPY . .
ENTRYPOINT ["python", "-m", "pytest", "-xsv", "tests"]
14 changes: 14 additions & 0 deletions Dockerfile.training
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM python:3.8-slim-buster
RUN apt-get update && apt-get install -y make

WORKDIR /app

COPY Makefile .
COPY requirements-training.txt .

RUN make install-training

COPY . .
WORKDIR /app/src/

ENTRYPOINT ["python", "-m", "training.main"]

0 comments on commit ff54066

Please sign in to comment.