We know the game and we're gonna play it

This commit is contained in:
2025-11-02 19:56:48 +02:00
parent 91cf52e19b
commit a1ba18e230

View File

@@ -59,10 +59,8 @@ jobs:
WORKDIR /app
COPY requirements.txt /app/requirements.txt
COPY app /app/app
ENV DEBIAN_FRONTEND=noninteractive
ENV PIP_ROOT_USER_ACTION=ignore
RUN python -m pip install --upgrade pip \
&& pip install -r /app/requirements.txt \
RUN pip install -r /app/requirements.txt \
&& cd /app/app \
&& pyinstaller --onefile --add-data "ui:ui" wolServer.py
EOF