mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
imgui: add Dockerfile
This commit is contained in:
parent
2aee4419e3
commit
ef5720c9eb
1 changed files with 7 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
FROM debian:jessie
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends build-essential libglfw3-dev libglew-dev pkg-config libxrandr-dev libxi-dev
|
||||
ADD . /usr/src/imgui
|
||||
WORKDIR /usr/src/imgui
|
||||
RUN make -C examples/opengl_example all
|
||||
CMD ["/usr/src/imgui/examples/opengl_example/imgui_example"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue