Bibata_Cursor/Dockerfile

17 lines
424 B
Docker
Raw Normal View History

2019-11-17 21:10:37 -05:00
FROM ubuntu
2019-11-17 10:01:01 -05:00
# Update Repository
RUN apt-get update
2019-11-17 04:59:39 -05:00
# Install Build dependencies
2019-11-17 21:10:37 -05:00
RUN apt-get install -qy python3.7
2019-11-17 21:12:44 -05:00
RUN apt-get install -qy python3-pip
2019-11-17 10:04:17 -05:00
RUN apt-get install -qy inkscape x11-apps
2019-11-17 04:59:39 -05:00
# Copy Project to Docker Container
COPY . /Bibata
# Change Work Directory
WORKDIR /Bibata
2019-11-17 22:48:09 -05:00
# Building Source code with 2 core
RUN make Bibata_Classic -j 2
RUN make Bibata_Oil -j 2
RUN make Bibata_Ice -j 2
RUN make Bibata_Amber -j 2