CI for building Servo docker image
Some checks failed
Lint / lint (push) Has been cancelled
Build Servo Image / build (push) Failing after 16s

This commit is contained in:
Gabriel Simmer 2024-08-01 10:02:10 +01:00
parent fc2a5832d7
commit 283caf3c14
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,23 @@
name: Build Servo Image
on:
schedule:
- cron: "0 1 * * *"
push:
paths:
- 'dockerfiles/Dockerfile.servo'
- '.forgejo/workflows/render-servo.yml'
jobs:
build:
runs-on: debian-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
with:
ref: trunk
- name: Buildah Action
uses: https://github.com/redhat-actions/buildah-build@v2
with:
image: git.gmem.ca/arch/servo
tags: latest $(date -I)
containerfiles: |
./dockerfiles/Dockerfile.servo

View file

@ -0,0 +1,15 @@
FROM docker.io/debian:bookworm-slim
RUN apt update && apt upgrade && \
apt install -y curl libunwind8 libfontconfig1 libx11-6 libwayland-client0 \
mesa-utils libgl1-mesa-glx xkb-data libxkbcommon-x11-0 && \
apt-get clean autoclean && \
apt-get autoremove --yes && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
RUN curl -LO https://download.servo.org/nightly/linux/servo-latest.tar.gz && \
tar -xvf servo-latest.tar.gz && \
mv servo /opt && ln -s /opt/servo/servo /usr/local/bin && \
rm servo-latest.tar.gz
ENTRYPOINT ["/usr/local/bin/servo"]