2023-02-11 23:50:01 +01:00
|
|
|
FROM chatterino-ubuntu-20.04-build
|
|
|
|
|
2023-02-21 09:47:18 +01:00
|
|
|
# In CI, this is set from the aqtinstall action
|
|
|
|
ENV Qt5_DIR=/opt/qt512
|
2023-02-11 23:50:01 +01:00
|
|
|
|
|
|
|
WORKDIR /src/build
|
|
|
|
|
2023-02-21 09:47:18 +01:00
|
|
|
ADD .CI /src/.CI
|
2023-02-11 23:50:01 +01:00
|
|
|
|
2023-02-21 09:47:18 +01:00
|
|
|
# Install dependencies necessary for AppImage packaging
|
|
|
|
RUN apt-get update && apt-get -y install --no-install-recommends \
|
|
|
|
curl \
|
|
|
|
libfontconfig \
|
|
|
|
libxrender1 \
|
|
|
|
file
|
2023-02-11 23:50:01 +01:00
|
|
|
|
|
|
|
# package deb
|
2023-02-21 09:47:18 +01:00
|
|
|
RUN ./../.CI/CreateUbuntuDeb.sh
|
|
|
|
|
|
|
|
# package appimage
|
|
|
|
RUN ./../.CI/CreateAppImage.sh
|