1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 14:54:22 +00:00
sophon/.github/workflows/build-docker-images.yml

54 lines
2.3 KiB
YAML
Raw Normal View History

2021-10-20 14:51:32 +00:00
name: Build docker images
on:
push:
branches: [ main ]
jobs:
build-backend:
name: "Build backend image"
2021-10-20 14:51:32 +00:00
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Login to GitHub Containers"
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u Steffo99 --password-stdin
- name: "Build the docker container `ghcr.io/steffo99/sophon-backend:latest`"
run: docker build ./backend --tag ghcr.io/steffo99/sophon-backend:latest
- name: "Upload the container to GitHub Containers"
run: docker push ghcr.io/steffo99/sophon-backend:latest
2021-10-20 14:51:32 +00:00
build-frontend:
name: "Build frontend image"
2021-10-20 14:51:32 +00:00
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Login to GitHub Containers"
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u Steffo99 --password-stdin
- name: "Build the docker container `ghcr.io/steffo99/sophon-frontend:latest`"
run: docker build ./frontend --tag ghcr.io/steffo99/sophon-frontend:latest
- name: "Upload the container to GitHub Containers"
run: docker push ghcr.io/steffo99/sophon-frontend:latest
2021-10-20 14:51:32 +00:00
build-proxy:
name: "Build proxy image"
2021-10-20 14:51:32 +00:00
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Login to GitHub Containers"
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u Steffo99 --password-stdin
- name: "Build the docker container `ghcr.io/steffo99/sophon-proxy:latest`"
run: docker build ./proxy --tag ghcr.io/steffo99/sophon-proxy:latest
- name: "Upload the container to GitHub Containers"
run: docker push ghcr.io/steffo99/sophon-proxy:latest
2021-10-21 01:54:04 +00:00
build-jupyter:
name: "Build jupyter image"
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Login to GitHub Containers"
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u Steffo99 --password-stdin
- name: "Build the docker container `ghcr.io/steffo99/sophon-jupyter:latest`"
run: docker build ./jupyter --tag ghcr.io/steffo99/sophon-jupyter:latest
- name: "Upload the container to GitHub Containers"
run: docker push ghcr.io/steffo99/sophon-jupyter:latest