mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
7e005ba661
This means the AppImage is built on Ubuntu 20.04 using Qt 5.12
22 lines
441 B
Plaintext
22 lines
441 B
Plaintext
FROM chatterino-ubuntu-20.04-build
|
|
|
|
# In CI, this is set from the aqtinstall action
|
|
ENV Qt5_DIR=/opt/qt512
|
|
|
|
WORKDIR /src/build
|
|
|
|
ADD .CI /src/.CI
|
|
|
|
# Install dependencies necessary for AppImage packaging
|
|
RUN apt-get update && apt-get -y install --no-install-recommends \
|
|
curl \
|
|
libfontconfig \
|
|
libxrender1 \
|
|
file
|
|
|
|
# package deb
|
|
RUN ./../.CI/CreateUbuntuDeb.sh
|
|
|
|
# package appimage
|
|
RUN ./../.CI/CreateAppImage.sh
|