feat: create container
This commit is contained in:
parent
a78dbd4756
commit
e0367e167a
3 changed files with 45 additions and 1 deletions
24
.github/workflows/main.yml
vendored
Normal file
24
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Build PDFs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: 🚢 Deploy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: docker/setup-buildx-action@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{github.actor}}
|
||||
password: ${{secrets.GITHUB_TOKEN}}
|
||||
- uses: docker/build-push-action@v6
|
||||
with:
|
||||
file: Containerfile
|
||||
push: true
|
||||
tags: ghcr.io/swablab/documents:latest
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
*.pdf
|
||||
*.yml
|
||||
*.png
|
||||
*.png
|
||||
!.github/**
|
19
Containerfile
Normal file
19
Containerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM docker.io/alpine:latest AS build
|
||||
RUN apk add typst
|
||||
RUN mkdir -p /root/.local/share/fonts
|
||||
RUN wget -O /root/.local/share/fonts/ubuntu.ttf https://cdn.jsdelivr.net/fontsource/fonts/ubuntu@latest/latin-400-normal.ttf
|
||||
RUN wget -O /root/.local/share/fonts/noto.ttf https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/latin-400-normal.ttf
|
||||
|
||||
COPY . .
|
||||
RUN typst c 3d-druck-agb.typ
|
||||
RUN typst c beitragsordnung.typ
|
||||
RUN typst c beitrittserklärung.typ
|
||||
RUN typst c beleg.typ
|
||||
RUN typst c datenschutz-einwilligung.typ
|
||||
RUN typst c haftungsausschluss.typ
|
||||
RUN typst c satzung.typ
|
||||
RUN typst c werkstatt-agb.typ
|
||||
RUN typst c werkstatt-regeln.typ
|
||||
|
||||
FROM scratch
|
||||
COPY --from=build *.pdf /
|
Loading…
Add table
Reference in a new issue