Skip to content

Commit

Permalink
Merge pull request #7 from Dpbm/actions
Browse files Browse the repository at this point in the history
Actions
  • Loading branch information
Dpbm authored Nov 21, 2023
2 parents 3c7ff4d + fcaa2f5 commit 550bc0a
Show file tree
Hide file tree
Showing 5 changed files with 132 additions and 8 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Publish Docker image

on:
push:
branches: ['main']

env:
NAMESPACE: ${{ secrets.DOCKERHUB_NAMESPACE }}
IMAGE_NAME: qiskit-metal

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata (tags, labels) for Docker (ubuntu image)
id: meta-ubuntu
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
tags: |
type=raw,value=latest
type=raw,value=latest-ubuntu
images: ${{ env.NAMESPACE }}/${{ env.IMAGE_NAME }}

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

- name: Extract metadata (tags, labels) for Docker (minimal-jupyter image)
id: meta-minimal-jupyter
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
tags: type=raw,value=latest-minimal-jupyter
images: ${{ env.NAMESPACE }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker minimal-jupyter image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
file: ./minimal-jupyter.Dockerfile
push: true
tags: ${{ steps.meta-minimal-jupyter.outputs.tags }}
labels: ${{ steps.meta-minimal-jupyter.outputs.labels }}
60 changes: 60 additions & 0 deletions .github/workflows/ghrc.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']

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@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}

- name: Extract metadata (tags, labels) for Docker (ubuntu image)
id: meta-ubuntu
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
tags: |
type=raw,value=latest
type=raw,value=latest-ubuntu
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

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

- name: Extract metadata (tags, labels) for Docker (minimal-jupyter image)
id: meta-minimal-jupyter
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
tags: type=raw,value=latest-minimal-jupyter
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker minimal-jupyter image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
file: ./minimal-jupyter.Dockerfile
push: true
tags: ${{ steps.meta-minimal-jupyter.outputs.tags }}
labels: ${{ steps.meta-minimal-jupyter.outputs.labels }}
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"cSpell.words": [
"DOCKERHUB",
"jupyter",
"qiskit"
]
}
14 changes: 7 additions & 7 deletions minimal-jupyter.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM quay.io/jupyter/minimal-notebook

LABEL org.opencontainers.image.source=https://github.com/Dpbm/qiskit-metal-docker
ENV LANG en_US.utf8
ENV TZ="America/New_York"
ENV XDG_RUNTIME_DIR /tmp/runtime-metal
Expand All @@ -10,12 +10,12 @@ RUN groupadd -r metal && useradd -r -g metal metal
RUN apt update && \
apt upgrade -y && \
apt install -y build-essential \
libgl1-mesa-glx \
libglu1-mesa \
libxcursor-dev \
libxft2 \
libxinerama1 \
libexpat1
libgl1-mesa-glx \
libglu1-mesa \
libxcursor-dev \
libxft2 \
libxinerama1 \
libexpat1

USER metal
ENV HOME /home/metal
Expand Down
2 changes: 1 addition & 1 deletion ubuntu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ubuntu:latest

LABEL org.opencontainers.image.source=https://github.com/Dpbm/qiskit-metal-docker
ENV LANG en_US.utf8
ENV TZ="America/New_York"
ENV DEBIAN_FRONTEND noninteractive
Expand Down

0 comments on commit 550bc0a

Please sign in to comment.