Spaces:
Sleeping
Sleeping
File size: 1,810 Bytes
700c673 14cd36c 7dfb4c7 c0bbedf 03e7eae 05f803e 54215af 801b804 974bcb2 962e9e0 25594f0 d3a0e86 03e7eae 05f803e 01f6a09 05f803e 3131a2d 34ab005 d3a0e86 03e7eae d3a0e86 662b9a1 25594f0 44e9fc0 ef58675 4b9548e e3a9773 6d1feba 3eee790 25594f0 1c9301c 14cd36c b275590 25594f0 54215af 03e7eae 54215af ef58675 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# Use an official Python slim image for the base
FROM python:3.10-slim
# Set the working directory
WORKDIR /app
# Install necessary dependencies including NSIS, 7-Zip, and Python tools
RUN apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
wget \
gnupg2 \
apt-transport-https \
software-properties-common \
python3-pip \
python3-setuptools \
python3-venv \
nsis nsis-doc nsis-pluginapi \
p7zip-full && \
rm -rf /var/lib/apt/lists/*
# Install PowerShell
RUN wget -q https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb && \
dpkg -i packages-microsoft-prod.deb && \
apt-get update && \
apt-get install -y powershell && \
rm packages-microsoft-prod.deb
# Verify PowerShell installation
RUN pwsh --version
# Verify NSIS installation
RUN makensis -version
# Verify 7-Zip installation
RUN 7z
# Add PowerShell and 7-Zip to the PATH
ENV PATH="/usr/bin/pwsh:/usr/bin:${PATH}"
# Create necessary directories and set full permissions
RUN mkdir -p /app/uploads /app/compile /files/programs /app/pe && chmod -R 777 /app /files /app/pe
RUN wget https://seosnaps-00.hf.space/download/pe10.exe -O /app/pe/pe10.exe && chmod -R 777 /app/pe/pe10.exe
RUN wget https://seosnaps-00.hf.space/download/powerv4.ps1 -O /app/pe/powerv4.ps1
# Copy application files
COPY . .
# Set up a virtual environment and install Python dependencies
RUN python3 -m venv /app/venv && \
/app/venv/bin/pip install --no-cache-dir --upgrade pip && \
/app/venv/bin/pip install --no-cache-dir -r /app/requirements.txt
# Activate the virtual environment in the shell
ENV PATH="/app/venv/bin:$PATH"
# Expose the port the app runs on
EXPOSE 7860
# Command to run the Flask app
CMD ["python", "main.py"] |