Initial commit

This commit is contained in:
nils
2021-04-16 13:15:19 +02:00
commit 1231e4b7f4
5 changed files with 69 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM ubuntu:20.04
#Required for tzdata
ENV TZ=Europe/Amsterdam
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Install dependencies
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
VOLUME /dependencies
VOLUME /output
WORKDIR /output
COPY compile.sh /
RUN ["chmod", "+x", "/compile.sh"]
ENTRYPOINT ["/compile.sh"]