sigyllly commited on
Commit
8ff959f
·
verified ·
1 Parent(s): b3f7c7a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -14,15 +14,16 @@ RUN apt-get update && apt-get install -y \
14
  python3-setuptools \
15
  python3-venv \
16
  build-essential \
17
- git \
18
  cmake \
19
  libtool \
20
  autoconf \
21
  && apt-get clean \
22
  && rm -rf /var/lib/apt/lists/*
23
 
24
- # Install makensis by building from source
25
- RUN git clone --branch master https://github.com/NSIS/NSIS.git /opt/nsis \
 
 
26
  && cd /opt/nsis \
27
  && ./configure \
28
  && make \
 
14
  python3-setuptools \
15
  python3-venv \
16
  build-essential \
 
17
  cmake \
18
  libtool \
19
  autoconf \
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 \