Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 18 additions & 15 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,25 @@ ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=America/Chicago

# Apt installs
RUN apt-get update && apt-get install -y
RUN apt-get install -y tar
RUN apt-get install -y wget
RUN apt-get install -y bzip2
RUN apt-get install -y ca-certificates
RUN apt-get install -y curl
RUN apt-get install -y git
RUN apt-get install -y build-essential
RUN apt-get install -y clang-format-8
RUN apt-get install -y cmake
RUN apt-get install -y autoconf
RUN apt-get install -y libtool
RUN apt-get install -y pkg-config
# Download the specified A4B469963BF863CC from keyserver.ubuntu.com and add it to the trusted keyring
# Download and update the PGP corresponding to the cuda apt source
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A4B469963BF863CC
RUN apt-get update
RUN apt-get install -y tar
RUN apt-get install -y wget
RUN apt-get install -y bzip2
RUN apt-get install -y ca-certificates
RUN apt-get install -y curl
RUN apt-get install -y git
RUN apt-get install -y build-essential
RUN apt-get install -y clang-format-8
RUN apt-get install -y cmake
RUN apt-get install -y autoconf
RUN apt-get install -y libtool
RUN apt-get install -y pkg-config
RUN apt-get install -y libgoogle-glog-dev
RUN apt-get install -y protobuf-compiler
RUN apt-get install -y llvm
RUN apt-get install -y protobuf-compiler
RUN apt-get install -y llvm

# get the Diplomacy searchbot version iclr21
WORKDIR /
Expand Down