Bibata_Cursor/Dockerfile

15 lines
348 B
Docker
Raw Normal View History

2019-11-17 05:41:43 -05:00
FROM ubuntu
2019-11-17 04:59:39 -05:00
# Update Software repository
2019-11-17 05:41:43 -05:00
RUN apt-get update
2019-11-17 04:59:39 -05:00
# Install Build dependencies
2019-11-17 05:41:43 -05:00
RUN apt-get install -y python3 python3-pip inkscape xcursorgen && \
rm -rf /var/lib/apt/lists/*
2019-11-17 04:59:39 -05:00
# Copy Project to Docker Container
COPY . /Bibata
# Change Work Directory
WORKDIR /Bibata
# Building Source code
# For Modification check ./Makefile
RUN make