Hide those navs, boi!

This commit is contained in:
2025-11-02 17:05:45 +02:00
parent e1e607c1f1
commit cd12bb316a
5 changed files with 14 additions and 26 deletions

View File

@@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.14'
- name: Install dependencies
run: |
@@ -53,27 +53,17 @@ jobs:
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker buildx create --use
docker buildx build --platform linux/arm64/v8 -t arm-builder --load --file - . <<EOF
FROM arm64v8/python:3.11-slim-bullseye
FROM arm64v8/python:3.14-slim-trixie
WORKDIR /app
COPY requirements.txt /app/requirements.txt
COPY app /app/app
RUN apt-get update && apt-get install -y \
build-essential \
zlib1g-dev \
libncurses5-dev \
libgdbm-dev \
libnss3-dev \
libssl-dev \
libreadline-dev \
libffi-dev \
libsqlite3-dev \
tk-dev \
libxrender-dev \
libxtst-dev \
libxext-dev \
libsm-dev \
libx11-dev \
python3-dev \
libffi-dev \
libssl-dev \
libsqlite3-dev \
zlib1g-dev \
&& python -m pip install --upgrade pip \
&& pip install -r /app/requirements.txt \
&& cd /app/app \

View File

@@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.14'
- name: Install Redis
run: |