For the sake of my sanity, just ignore this...
This commit is contained in:
@@ -53,11 +53,35 @@ 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
|
||||||
|
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 \
|
||||||
|
x11proto-core-dev \
|
||||||
|
x11proto-xext-dev \
|
||||||
|
x11proto-fonts-dev \
|
||||||
|
x11proto-xfree86-dev \
|
||||||
|
libxrender-dev \
|
||||||
|
libxtst-dev \
|
||||||
|
libxext-dev \
|
||||||
|
libsm-dev \
|
||||||
|
libx11-dev \
|
||||||
|
libgl1-mesa-glx \
|
||||||
|
libgl1-mesa-dri \
|
||||||
|
libgl1-mesa-dev \
|
||||||
|
libglu1-mesa-dev \
|
||||||
|
python3-dev
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY requirements.txt /app/requirements.txt
|
COPY requirements.txt /app/requirements.txt
|
||||||
COPY app /app/app
|
COPY app /app/app
|
||||||
RUN apt-get update && apt-get install -y python3-dev \
|
RUN python -m pip install --upgrade pip \
|
||||||
&& 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
|
||||||
|
|||||||
Reference in New Issue
Block a user