Skip to content

Commit

Permalink
Merge pull request #5 from nesi/apptainer
Browse files Browse the repository at this point in the history
Build apptainer image and store
  • Loading branch information
MattBixley authored Nov 12, 2023
2 parents 58b8feb + d2e45c3 commit 3ea0a31
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build_container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build container image

on:
workflow_dispatch:
push:

jobs:
build:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt update -y
sudo apt install -y wget
- name: Install Apptainer
run: |
wget https://github.com/apptainer/apptainer/releases/download/v1.2.4/apptainer_1.2.4_amd64.deb
sudo apt install -y ./apptainer_1.2.4_amd64.deb
rm ./apptainer_1.2.4_amd64.deb
- uses: actions/checkout@v4
- name: Build container
run: sudo apptainer build ML102.sif ML102.def
- name: Login and deploy
run: |
echo ${{ secrets.GITHUB_TOKEN }} | apptainer remote login -u ${{ secrets.GHCR_USERNAME }} --password-stdin oras://ghcr.io
apptainer push ML102.sif "oras://ghcr.io/ml102_workshop:latest"
if: ${{ github.ref == 'refs/heads/main' }}
16 changes: 16 additions & 0 deletions ML102.def
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Bootstrap: docker
From: python:3.10-bookworm

%files
./ /opt/ml102_workshop/

%post
apt-get update && apt-get install -y \
rsync \
nano \
vim \
git \
wget \
curl
pip install -r /opt/ml102_workshop/requirements.lock.txt
pip install jupyterlab

0 comments on commit 3ea0a31

Please sign in to comment.