Move base images to subdir

This commit is contained in:
BtbN 2020-09-03 16:33:29 +02:00
parent 6ad0e85361
commit f4ed3a8008
3 changed files with 10 additions and 2 deletions

View file

@ -0,0 +1,9 @@
FROM btbn/ffmpeg-builder:base
ENV DEBIAN_FRONTEND noninteractive
RUN \
apt-get -y install mingw-w64 && \
apt-get -y clean
ENV FFBUILD_TARGET_FLAGS "--pkg-config=pkg-config --cross-prefix=x86_64-w64-mingw32- --arch=x86_64 --target-os=win32"

9
images/base/Dockerfile Normal file
View file

@ -0,0 +1,9 @@
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