mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
62e20cd24b
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
26 lines
606 B
Docker
26 lines
606 B
Docker
FROM debian:buster
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
ca-certificates \
|
|
git \
|
|
qmlscene \
|
|
qt5-qmake \
|
|
qt5-default \
|
|
qtdeclarative5-dev \
|
|
qml-module-qtquick-controls \
|
|
qml-module-qtgraphicaleffects \
|
|
qml-module-qtquick-dialogs \
|
|
qml-module-qtquick-localstorage \
|
|
qml-module-qtquick-window2 \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone --depth 1 --recursive https://github.com/Swordfish90/cool-retro-term.git /src
|
|
WORKDIR /src
|
|
RUN qmake \
|
|
&& make
|
|
|
|
ENTRYPOINT [ "/src/cool-retro-term" ]
|