mirror of
https://github.com/jellyfin/jellyfin-ffmpeg.git
synced 2026-09-03 05:09:58 +03:00
8 lines
159 B
Docker
8 lines
159 B
Docker
#!/usr/bin/make
|
|
DISTRO=ubuntu:noble
|
|
.PHONY: Dockerfile
|
|
Dockerfile: Dockerfile.win64.in
|
|
sed 's/DISTRO/$(DISTRO)/' $< > $@ || rm -f $@
|
|
clean:
|
|
rm -f Dockerfile
|