Fix build & compile skia from source

This commit is contained in:
nils
2022-04-06 11:37:51 +02:00
parent 18470299dc
commit 02647a7ee4
4 changed files with 50 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM python
#Required for tzdata
ENV TZ=Europe/Amsterdam
@@ -9,12 +9,13 @@ RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y git unzip curl build-essential cmake ninja-build libx11-dev libxcursor-dev libxi-dev libgl1-mesa-dev libfontconfig1-dev
COPY compile.sh /
VOLUME /dependencies
VOLUME /output
WORKDIR /output
COPY compile.sh /
RUN ["chmod", "+x", "/compile.sh"]
ENTRYPOINT ["/compile.sh"]
ENTRYPOINT ["/compile.sh"]