Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
54edc56cd0 | |||
61b972cf43 |
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
python3 \
|
||||
python3-pip \
|
||||
python3-dev \
|
||||
build-essential \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
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
|
@ -6,4 +6,5 @@ Encrypto is a lightweight application for encrypting and decrypting personal fil
|
||||
|
||||
Simply select your file, encryption algorightm, encrypt or decrypt, enter your password of choice, and click the button.
|
||||
|
||||
Have a nice day!
|
||||
## Installation
|
||||
|
||||
|
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
||||
cryptography
|
||||
tk
|
Reference in New Issue
Block a user