Skip to content

Commit

Permalink
feat: build and publish image (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
akdasa authored Oct 3, 2024
1 parent 4340493 commit c23d4fc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true

- name: Check free space
run: df -h

- name: Build and push ${{ github.repository }}
uses: docker/build-push-action@v4
with:
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-devel

# ---------------------------------------------------------------------------- #
# Meta #
# ---------------------------------------------------------------------------- #

LABEL org.opencontainers.image.description="Audio enhancing service for the Lectorium project"
LABEL org.opencontainers.image.source="https://github.com/akdasa-studios/lectorium"


# ---------------------------------------------------------------------------- #
# Install Dependencies #
# ---------------------------------------------------------------------------- #
Expand Down

0 comments on commit c23d4fc

Please sign in to comment.