fix that damn sign!!!

This commit is contained in:
2025-11-02 20:45:49 +02:00
parent 1af7f1854e
commit 15bfc6f698

View File

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