Move base images to subdir
This commit is contained in:
parent
6ad0e85361
commit
f4ed3a8008
3 changed files with 10 additions and 2 deletions
9
images/base-win64/Dockerfile
Normal file
9
images/base-win64/Dockerfile
Normal 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
9
images/base/Dockerfile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue