Bibata_Cursor/Dockerfile
2019-11-17 16:15:16 +05:30

14 lines
346 B
Docker

FROM ubuntu
# Update Software repository
RUN apt-get update
# Install Build dependencies
RUN apt-get install -y python3 python3-pip inkscape x11-apps && \
rm -rf /var/lib/apt/lists/*
# Copy Project to Docker Container
COPY . /Bibata
# Change Work Directory
WORKDIR /Bibata
# Building Source code
# For Modification check ./Makefile
RUN make