mirror of
https://github.com/jellyfin/jellyfin-ffmpeg.git
synced 2026-09-02 21:03:08 +03:00
9 lines
195 B
Docker
9 lines
195 B
Docker
#!/usr/bin/make
|
|
DISTRO=ubuntu:hirsute
|
|
FF_REV=1
|
|
.PHONY: Dockerfile
|
|
Dockerfile: Dockerfile.win64.in
|
|
sed 's/DISTRO/$(DISTRO)/; s/FFMPEG_REV/$(FF_REV)/' $< > $@ || rm -f $@
|
|
clean:
|
|
rm -f Dockerfile
|