Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelLinn authored and gibbed committed May 5, 2021
0 parents commit 38c64b2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Dockerfile.2021-05-05
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Linux build environment for CI

FROM ubuntu:focal

ARG DEBIAN_FRONTEND=noninteractive

RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
git \
python3 \
wget \
clang-format \
clang \
cmake \
llvm-dev \
libc++-dev \
libc++abi-dev \
libgtk-3-dev \
liblz4-dev \
libpthread-stubs0-dev \
libsdl2-dev \
libvulkan-dev \
libx11-dev \
libx11-xcb-dev \
; \
rm -rf /var/lib/apt/lists/*

ENV CC clang
ENV CXX clang++
ENV AR llvm-ar

0 comments on commit 38c64b2

Please sign in to comment.