forked from jessfraz/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jessica Frazelle <[email protected]>
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM debian:jessie | ||
MAINTAINER Jessica Frazelle <[email protected]> | ||
|
||
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 | ||
|
||
RUN git clone --recursive https://github.com/Swordfish90/cool-retro-term.git /src | ||
WORKDIR /src | ||
RUN qmake \ | ||
&& make | ||
|
||
ENTRYPOINT [ "/src/cool-retro-term" ] |