Add base build image

This commit is contained in:
BtbN 2020-09-01 23:10:07 +02:00
parent 31650cdcff
commit 1e69c91131
1 changed files with 11 additions and 0 deletions

11
base/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND noninteractive
RUN \
apt-get -y update && \
apt-get -y dist-upgrade && \
apt-get -y install build-essential yasm nasm pkg-config git curl wget cmake unzip subversion autoconf automake libtool clang && \
apt-get -y clean
RUN mkdir -p /opt/ffbuild/{lib,bin,include}