Compare commits

...

3 Commits

Author SHA1 Message Date
Albert S. 2f1353c4cd build: looqs: Auto build latest tag 2022-06-29 23:05:56 +02:00
Albert S. 1050418cf7 Add Dockerfiles to build looqs 2022-06-29 23:05:23 +02:00
Albert S. 4995b2337e build: looqs: Version bump to v0.2 2022-06-07 12:43:57 +02:00
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,13 @@
FROM ubuntu:21.10
COPY . /aptrepo
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y --no-install-recommends fakeroot build-essential qtbase5-dev libpoppler-qt5-dev libuchardet-dev libquazip5-dev git ca-certificates gnupg wget debhelper-compat
RUN cd /tmp/
RUN wget https://quitesimple.org/share/pubkey
RUN gpg --import pubkey
RUN sha256sum pubkey | grep fe5ce4868d6998aabe08ab51dc2d8fded73cf126d03e2df37045b6c486904356
RUN cd /aptrepo/
WORKDIR /aptrepo

View File

@ -0,0 +1,13 @@
FROM ubuntu:22.04
COPY . /aptrepo
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y --no-install-recommends fakeroot build-essential qtbase5-dev libpoppler-qt5-dev libuchardet-dev libquazip5-dev git ca-certificates gnupg wget debhelper-compat
RUN cd /tmp/
RUN wget https://quitesimple.org/share/pubkey
RUN gpg --import pubkey
RUN sha256sum pubkey | grep fe5ce4868d6998aabe08ab51dc2d8fded73cf126d03e2df37045b6c486904356
RUN cd /aptrepo/
WORKDIR /aptrepo

View File

@ -6,7 +6,7 @@ exit 1
fi
set -e
TAG="v0.1rc3"
TAG="_auto_"
BUILDDIR=$(mktemp -d)
OUTPUT_DIR="$1"