CI for building Servo docker image
Some checks failed
Lint / lint (push) Successful in 35s
Build Servo Image / build (push) Failing after 5s

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

View file

@ -0,0 +1,18 @@
name: Build Servo Image
on:
schedule:
- cron: "0 1 * * *"
push:
paths:
- 'dockerfiles/Dockerfile.servo'
- '.forgejo/workflows/render-servo.yml'
jobs:
build:
runs-on: vancouver
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
with:
ref: trunk
- name: Build Image
run: podman build . -f dockerfiles/Dockerfile.servo -t git.gmem.ca/arch/servo -t git.gmem.ca/arch/servo:$(date -I)

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"]