Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM ubuntu
- WORKDIR /geany
- RUN apt-get update
- RUN apt-get install -y tzdata
- RUN apt-get install -y automake
- RUN apt-get install -y autoconf
- RUN apt-get install -y libtool
- RUN apt-get install -y intltool
- RUN apt-get install -y libglib2.0-dev
- RUN apt-get install -y libgtk2.0-dev
- RUN apt-get install -y libgio2.0-cil-dev
- RUN apt-get install -y g++
- COPY . .
- RUN ./autogen.sh --disable-html-docs && make && make install
- CMD ["geany"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement