Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bilelmoussaoui committed Mar 3, 2017
2 parents 1cc5155 + b3d2d64 commit 02ebc4d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ubuntu:16.04
RUN apt-get -y update
# Install dependecies
RUN apt-get install -y git python-gobject ninja python3-cairosvg python3-gi python3-pip python-dev libgtk-3-dev intltool gobject-introspection libgirepository1.0-dev gir1.2-gtk-3.0
RUN pip3 install requests Pillow meson

# Build Icon Requests using meson
RUN git clone https://github.com/bil-elmoussaoui/Icon-Requests
WORKDIR ./Icon-Requests
RUN mkdir build
WORKDIR ./build
RUN meson .. && ninja && sudo ninja install

CMD icon-requests --debug
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ yaourt -S icon-requests
git clone https://github.com/bil-elmoussaoui/Icon-Requests && cd ./Icon-Requests
```
2 - Install dependecies
- meson (git version for now)
- meson
- ninja
- requests
- python3-cairosvg or inkscape
- Pillow
- Gtk 3.16+
- Python 3.3+

3 - Build the application
```bash
Expand Down

0 comments on commit 02ebc4d

Please sign in to comment.