Files
encrypto/Dockerfile
2025-06-09 00:26:09 +00:00

17 lines
391 B
Docker

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