forked from lvgl/lv_port_pc_eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
36 lines (28 loc) · 874 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# To build:
# docker build -t lvgl .
#
# To see how to do GUI forwarding in macOS:
# https://cntnr.io/running-guis-with-docker-on-mac-os-x-a14df6a76efc
#
# To do GUI forwarding on linux, the following may work (easiest method, but unsafe)
# xhost + && docker run --network=host --env DISPLAY=$DISPLAY lvgl
FROM ubuntu:18.04
RUN apt update && apt install -y \
build-essential \
cmake \
gcc \
git \
libsdl2-dev \
mesa-utils \
libgl1-mesa-glx \
x11-apps
ENV DISPLAY=:0 \
LV_SIM_BRANCH=master \
LV_SIM_REPO=pc_simulator_sdl_eclipse \
LV_USER=littlevgl
# Prevents Docker from caching
ADD https://api.github.com/repos/$LV_USER/$LV_SIM_REPO/git/refs/heads/$LV_BRANCH version.json
RUN git clone --recursive -b$LV_SIM_BRANCH https://github.com/$LV_USER/$LV_SIM_REPO.git
WORKDIR /$LV_SIM_REPO
RUN make -j3
CMD ["./demo"]