Move build process to podman
All checks were successful
Check / Backend (pull_request) Successful in 3m58s
Check / Frontend (pull_request) Successful in 35s

This commit is contained in:
Drew 2025-11-25 22:00:20 -08:00
parent 15fabd126e
commit ff89fc283c
2 changed files with 9 additions and 5 deletions

View file

@ -11,8 +11,10 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- run: |
apt update && apt install -y docker.io
- name: Install Docker
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Forgejo Container Registry
@ -31,8 +33,10 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- run: |
apt update && apt install -y docker.io
- name: Install Docker
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Forgejo Container Registry

View file

@ -25,7 +25,7 @@ COPY src/ src/
COPY migrations/ migrations/
# Build the application
RUN cargo build --release
RUN --mount=source=.sqlx,target=.sqlx cargo build --release
# Runtime stage
FROM alpine:latest