This bunny should be killed.

This commit is contained in:
2024-12-15 17:00:55 +02:00
parent b6c0a86784
commit 8b110cdf63

View File

@@ -53,6 +53,9 @@ jobs:
docker buildx create --use docker buildx create --use
docker buildx build --platform linux/arm/v7 -t arm-builder --load --file - . <<EOF docker buildx build --platform linux/arm/v7 -t arm-builder --load --file - . <<EOF
FROM python:3.11-slim-buster FROM python:3.11-slim-buster
WORKDIR /app
COPY requirements.txt /app/requirements.txt
COPY app /app/app
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
build-essential \ build-essential \
zlib1g-dev \ zlib1g-dev \
@@ -77,11 +80,8 @@ jobs:
libgl1-mesa-dri \ libgl1-mesa-dri \
libgl1-mesa-dev \ libgl1-mesa-dev \
libglu1-mesa-dev \ libglu1-mesa-dev \
python3-dev python3-dev \
WORKDIR /app && python -m pip install --upgrade pip \
COPY requirements.txt /app/requirements.txt
COPY app /app/app
RUN python -m pip install --upgrade pip \
&& pip install -r /app/requirements.txt \ && pip install -r /app/requirements.txt \
&& pyinstaller --onefile --add-data "ui:ui" /app/app/wolServer.py && pyinstaller --onefile --add-data "ui:ui" /app/app/wolServer.py
EOF EOF