trivial: try again to fix void docker creation

This commit is contained in:
Mario Limonciello 2021-07-31 13:17:05 -05:00
parent 143efb9d88
commit 89e975490e

View File

@ -64,7 +64,9 @@ with open("Dockerfile", "w") as wfd:
elif OS == "arch":
wfd.write("RUN pacman -Syu --noconfirm --needed\\\n")
elif OS == "void":
wfd.write("RUN xbps-install -Suy xbps \\\n")
wfd.write(
"RUN xbps-install -Suy xbps && xbps-install -uy && xbps-install -y \\\n"
)
for i in range(0, len(deps)):
if i < len(deps) - 1:
wfd.write("\t%s \\\n" % deps[i])