From d9142dc324658d10da2777b3320237e13df021a0 Mon Sep 17 00:00:00 2001 From: KAiZ <24286590+KaizIqbal@users.noreply.github.com> Date: Sun, 17 Nov 2019 16:11:43 +0530 Subject: [PATCH] ubuntu image --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d207b478..c5be916a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ -FROM archlinux +FROM ubuntu # Update Software repository -RUN pacman -Syu +RUN apt-get update # Install Build dependencies -RUN pacman -S python python-pip inkscape xorg-xcursorgen +RUN apt-get install -y python3 python3-pip inkscape xcursorgen && \ + rm -rf /var/lib/apt/lists/* # Copy Project to Docker Container COPY . /Bibata # Change Work Directory