Add base build image
This commit is contained in:
parent
31650cdcff
commit
1e69c91131
1 changed files with 11 additions and 0 deletions
11
base/Dockerfile
Normal file
11
base/Dockerfile
Normal 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}
|
Loading…
Reference in a new issue