Add Dockerfiles to build looqs

This commit is contained in:
Albert S. 2022-06-29 23:05:23 +02:00
부모 4995b2337e
커밋 1050418cf7
2개의 변경된 파일26개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -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

파일 보기

@ -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