Skip to content

Removing non essential latex packages #4

Removing non essential latex packages

Removing non essential latex packages #4

Workflow file for this run

name: Build and Push Docker Image
on:
push:
paths:
- 'Dockerfile'
- 'requirements.txt'
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/latex-build:latest