1
0
Fork 0
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:
Johan Euphrosine 2014-11-20 03:15:10 -08:00
parent 2aee4419e3
commit ef5720c9eb

7
Dockerfile Normal file
View 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"]