forked from akippnn/docker-aseprite-linux
Initial commit
This commit is contained in:
20
Dockerfile
Normal file
20
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user