fix(dockerfile): Install add-apt-repository

This commit is contained in:
TheOnlyWayUp
2024-12-22 11:37:30 +00:00
parent 84c08b1c38
commit d6c31da507
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -15,6 +15,8 @@ WORKDIR /app
# Install git, exiftool
RUN apt update
RUN apt install -y software-properties-common
RUN add-apt-repository ppa:apt-fast/stable
RUN apt install -y apt-fast
RUN apt update
+1 -1
View File
@@ -709,7 +709,7 @@ id="copyright-license-image">""".format(
# # Cover and Copyright Page
await self.generate_cover_and_copyright_html()
await self.generate_about_author_chapter()
self.tree = BeautifulSoup(self.template)
self.tree = BeautifulSoup(self.template, "lxml")
self.generate_toc()
for part, content in zip(self.data["parts"], contents):