Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. FROM ubuntu
  2. WORKDIR /geany
  3. RUN apt-get update
  4. RUN apt-get install -y tzdata
  5. RUN apt-get install -y automake
  6. RUN apt-get install -y autoconf
  7. RUN apt-get install -y libtool
  8. RUN apt-get install -y intltool
  9. RUN apt-get install -y libglib2.0-dev
  10. RUN apt-get install -y libgtk2.0-dev
  11. RUN apt-get install -y libgio2.0-cil-dev
  12. RUN apt-get install -y g++
  13. COPY . .
  14. RUN ./autogen.sh --disable-html-docs && make && make install
  15. CMD ["geany"]
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement