Bibata_Cursor/Dockerfile
2019-11-18 09:11:31 +05:30

16 lines
424 B
Docker

FROM ubuntu
# Update Repository
RUN apt-get update
# Install Build dependencies
RUN apt-get install -qy python3.7
RUN apt-get install -qy python3-pip
RUN apt-get install -qy inkscape x11-apps
# Copy Project to Docker Container
COPY . /Bibata
# Change Work Directory
WORKDIR /Bibata
# Building Source code with 4 core
RUN make Bibata_Classic -j 4
RUN make Bibata_Oil -j 4
RUN make Bibata_Ice -j 4
RUN make Bibata_Amber -j 4