mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-30 14:55:21 -04:00
13 lines
305 B
Docker
13 lines
305 B
Docker
FROM archlinux
|
|
|
|
# Update Software repository
|
|
RUN pacman -Syy
|
|
# Install Build dependencies
|
|
RUN pacman -S python python-pip inkscape xorg-xcursorgen
|
|
# Copy Project to Docker Container
|
|
COPY . /Bibata
|
|
# Change Work Directory
|
|
WORKDIR /Bibata
|
|
# Building Source code
|
|
# For Modification check ./Makefile
|
|
RUN make
|