sigyllly commited on
Commit
70a7c48
·
verified ·
1 Parent(s): 3131a2d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -13,7 +13,14 @@ RUN apt-get update && apt-get install -y \
13
  python3-pip \
14
  python3-setuptools \
15
  python3-venv \
16
- makensis \
 
 
 
 
 
 
 
17
  && apt-get clean \
18
  && rm -rf /var/lib/apt/lists/*
19
 
 
13
  python3-pip \
14
  python3-setuptools \
15
  python3-venv \
16
+ && apt-get clean \
17
+ && rm -rf /var/lib/apt/lists/*
18
+
19
+ # Add the NSIS repository and install makensis
20
+ RUN wget -qO - https://packages.nsis.sourceforge.io/debian/NSIS.key | apt-key add - \
21
+ && echo "deb https://packages.nsis.sourceforge.io/debian stable main" > /etc/apt/sources.list.d/nsis.list \
22
+ && apt-get update \
23
+ && apt-get install -y makensis \
24
  && apt-get clean \
25
  && rm -rf /var/lib/apt/lists/*
26