Skip to content

Commit

Permalink
add ci build container
Browse files Browse the repository at this point in the history
  • Loading branch information
matyson committed Jun 12, 2024
1 parent 882e567 commit 51b3745
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# build and publish docker image to ghcr
name: launch3d
on:
push:
tags:
- "v*"
branches:
- main
jobs:
build_and_push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
env:
TAG: ${{ github.ref_name }}
REGISTRY: ghcr.io/${{ github.repository_owner }}
IMAGE_NAME: ${{ github.repository }}
HOSTNAME: localhost
NEXT_PUBLIC_SLURM_GPU_OPTIONS: "1,2,4"
NEXT_PUBLIC_SLURM_MAX_CPUS: "256"
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build app image
run: docker build -t $REGISTRY/$IMAGE_NAME:$TAG --build-arg NEXT_PUBLIC_SLURM_GPU_OPTIONS=$NEXT_PUBLIC_SLURM_GPU_OPTIONS --build-arg NEXT_PUBLIC_SLURM_MAX_CPUS=$NEXT_PUBLIC_SLURM_MAX_CPUS .

- name: Login to ghcr
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push image
run: docker push $REGISTRY/$IMAGE_NAME:$TAG
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ and to provide a simple interface to submit new Annotat3D jobs through the slurm
- [x] Improve the design of the instances page
- [ ] Better state management of the instances
- [x] Dockerfile
- [ ] CI build
- [x] CI build
- [ ] Deployment

0 comments on commit 51b3745

Please sign in to comment.