From 25aac19cfb7a96a640285b8650d261735981e972 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Tue, 21 Sep 2021 20:33:42 -0600 Subject: [PATCH] Replaced procfile with heroku.yml, added heroku-only Dockerfile and updated app.json --- Dockerfile.heroku | 1 + Procfile | 1 - app.json | 1 + heroku.yml | 3 +++ 4 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 Dockerfile.heroku delete mode 100644 Procfile create mode 100644 heroku.yml diff --git a/Dockerfile.heroku b/Dockerfile.heroku new file mode 100644 index 0000000..c09b831 --- /dev/null +++ b/Dockerfile.heroku @@ -0,0 +1 @@ +FROM tzahi12345/youtubedl-material:nightly \ No newline at end of file diff --git a/Procfile b/Procfile deleted file mode 100644 index dc14c0b..0000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: npm start --prefix backend \ No newline at end of file diff --git a/app.json b/app.json index 74ee445..30a7d86 100644 --- a/app.json +++ b/app.json @@ -2,6 +2,7 @@ "name": "YoutubeDL-Material", "description": "An open-source and self-hosted YouTube downloader based on Google's Material Design specifications.", "repository": "https://github.com/Tzahi12345/YoutubeDL-Material", + "stack": "container", "logo": "https://i.imgur.com/GPzvPiU.png", "keywords": ["youtube-dl", "youtubedl-material", "nodejs"] } \ No newline at end of file diff --git a/heroku.yml b/heroku.yml new file mode 100644 index 0000000..52c590e --- /dev/null +++ b/heroku.yml @@ -0,0 +1,3 @@ +build: + docker: + web: Dockerfile.heroku \ No newline at end of file