diff --git a/cathode/Dockerfile b/cathode/Dockerfile new file mode 100644 index 0000000..d0e05c3 --- /dev/null +++ b/cathode/Dockerfile @@ -0,0 +1,24 @@ +FROM debian:jessie +MAINTAINER Jessica Frazelle + +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" ]