From 54edc56cd0c21115695a7d2390ac5a3455ca0834 Mon Sep 17 00:00:00 2001 From: crate Date: Mon, 9 Jun 2025 00:26:09 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 682c53e..9eac1b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \ WORKDIR /app COPY . . -RUN pip3 install -r requirements.txt -RUN pip3 install pyinstaller -RUN pyinstaller --onefile --windowed --icon=icon.png --name="Encrypto" encrypto.py +RUN pip3 install pyinstaller --break-system-packages +RUN pip3 install -r requirements.txt --break-system-packages + +RUN pyinstaller --onefile --windowed --icon=icon.png --name="Encrypto" encrypto.py \ No newline at end of file