Skip to content

Commit

Permalink
cathode
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Nov 19, 2014
1 parent a12781e commit 78cba4d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions cathode/Dockerfile
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" ]

0 comments on commit 78cba4d

Please sign in to comment.