this is how we generate our shit.

This commit is contained in:
2025-11-02 20:53:41 +02:00
parent 09f5e19d97
commit afabae7dc9

View File

@@ -60,9 +60,11 @@ jobs:
COPY requirements.txt /app/requirements.txt COPY requirements.txt /app/requirements.txt
COPY app /app/app COPY app /app/app
ENV PIP_ROOT_USER_ACTION=ignore ENV PIP_ROOT_USER_ACTION=ignore
RUN apt-get update && apt-get install -y --no-install-recommends binutils RUN apt-get update && apt-get install -y --no-install-recommends \
RUN pip install -r /app/requirements.txt binutils \
RUN cd /app/app && pyinstaller --onefile --add-data "ui:ui" wolServer.py && pip install -r /app/requirements.txt \
&& cd /app/app \
&& pyinstaller --onefile --add-data "ui:ui" wolServer.py
EOF EOF
- name: Create Dist Directory - name: Create Dist Directory