Fix AppImage not containing all SSL dependencies (#4400)

This means the AppImage is built on Ubuntu 20.04 using Qt 5.12
This commit is contained in:
pajlada
2023-02-21 09:47:18 +01:00
committed by GitHub
parent 621b5d9163
commit 7e005ba661
6 changed files with 66 additions and 23 deletions
+13 -5
View File
@@ -1,13 +1,21 @@
FROM chatterino-ubuntu-20.04-build
ADD .CI /src/.CI
# In CI, this is set from the aqtinstall action
ENV Qt5_DIR=/opt/qt512
WORKDIR /src/build
# RUN apt-get install -y wget
ADD .CI /src/.CI
# create appimage
# RUN pwd && ./../.CI/CreateAppImage.sh
# Install dependencies necessary for AppImage packaging
RUN apt-get update && apt-get -y install --no-install-recommends \
curl \
libfontconfig \
libxrender1 \
file
# package deb
RUN pwd && ./../.CI/CreateUbuntuDeb.sh
RUN ./../.CI/CreateUbuntuDeb.sh
# package appimage
RUN ./../.CI/CreateAppImage.sh