Skip to content

Pre-compile Python code and remove source from container. #17

Pre-compile Python code and remove source from container.

Pre-compile Python code and remove source from container. #17

Workflow file for this run

name: Build and Publish Container Image
on: [push]
jobs:
build-publish-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Publish Container Image
run: |
docker build . --tag ghcr.io/southernmethodistuniversity/purva:latest
docker run ghcr.io/SouthernMethodistUniversity/pURVA:latest
docker push ghcr.io/SouthernMethodistUniversity/pURVA:latest