starting the service is always better

This commit is contained in:
2025-11-02 19:37:29 +02:00
parent 14289596d0
commit a9599a01f3

View File

@@ -59,14 +59,7 @@ jobs:
COPY app /app/app
ENV DEBIAN_FRONTEND=noninteractive
ENV PIP_ROOT_USER_ACTION=ignore
RUN apt-get update && apt-get install -y \
build-essential \
python3-dev \
libffi-dev \
libssl-dev \
libsqlite3-dev \
zlib1g-dev \
&& python -m pip install --upgrade pip \
RUN python -m pip install --upgrade pip \
&& pip install -r /app/requirements.txt \
&& cd /app/app \
&& pyinstaller --onefile --add-data "ui:ui" wolServer.py