Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -19
Dockerfile
CHANGED
@@ -4,8 +4,9 @@ FROM python:3.10-slim
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install necessary dependencies including
|
8 |
-
RUN apt-get update
|
|
|
9 |
wget \
|
10 |
gnupg2 \
|
11 |
apt-transport-https \
|
@@ -13,23 +14,10 @@ RUN apt-get update && apt-get install -y \
|
|
13 |
python3-pip \
|
14 |
python3-setuptools \
|
15 |
python3-venv \
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
&& apt-get clean \
|
21 |
-
&& rm -rf /var/lib/apt/lists/*
|
22 |
-
|
23 |
-
# Download and extract the NSIS source
|
24 |
-
RUN wget https://github.com/NSIS/NSIS/archive/refs/heads/master.tar.gz -O /tmp/nsis.tar.gz \
|
25 |
-
&& mkdir /opt/nsis \
|
26 |
-
&& tar -xvzf /tmp/nsis.tar.gz -C /opt/nsis --strip-components=1 \
|
27 |
-
&& cd /opt/nsis \
|
28 |
-
&& ./configure \
|
29 |
-
&& make \
|
30 |
-
&& make install
|
31 |
-
|
32 |
-
# Verify makensis installation
|
33 |
RUN makensis -version
|
34 |
|
35 |
# Create necessary directories and set full permissions
|
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install necessary dependencies including NSIS and Python tools
|
8 |
+
RUN apt-get update -y && \
|
9 |
+
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
|
10 |
wget \
|
11 |
gnupg2 \
|
12 |
apt-transport-https \
|
|
|
14 |
python3-pip \
|
15 |
python3-setuptools \
|
16 |
python3-venv \
|
17 |
+
nsis nsis-doc nsis-pluginapi && \
|
18 |
+
rm -rf /var/lib/apt/lists/*
|
19 |
+
|
20 |
+
# Verify NSIS installation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
RUN makensis -version
|
22 |
|
23 |
# Create necessary directories and set full permissions
|