Files
illusion-arena-engine/.github/Dockerfile.CI
2022-03-13 12:33:16 +01:00

14 lines
400 B
Docker

FROM ubuntu:20.04
# Ubuntu 20.04 timezone fix
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && apt-get install --no-install-recommends -y build-essential libgl1-mesa-dev libsdl2-dev libvorbis-dev libfreetype6-dev mingw-w64
RUN mkdir -p /staging/openarena
COPY . /staging/openarena
RUN cd /staging/openarena && \
./travis-ci-build.sh