Update Dockerfile

This commit is contained in:
2025-06-09 00:26:09 +00:00
parent 61b972cf43
commit 54edc56cd0

View File

@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \
WORKDIR /app WORKDIR /app
COPY . . 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