diff --git a/Dockerfile b/Dockerfile index 022ab19..07e6887 100644 --- a/Dockerfile +++ b/Dockerfile @@ -73,11 +73,11 @@ RUN apt-get update -y \ && rm -f /var/lib/apt/lists/*_* # Install yt-dlp -RUN curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2024.08.06/yt-dlp -o /usr/local/bin/yt-dlp \ +RUN curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp \ && chmod a+rx /usr/local/bin/yt-dlp # Install streamlink -RUN curl -L https://github.com/streamlink/streamlink-appimage/releases/download/6.2.0-1/streamlink-6.2.0-1-cp311-cp311-manylinux2014_x86_64.AppImage -o /usr/local/bin/streamlink \ +RUN curl -L https://github.com/streamlink/streamlink-appimage/releases/download/6.11.0-1/streamlink-6.11.0-1-cp312-cp312-manylinux2014_x86_64.AppImage -o /usr/local/bin/streamlink \ && chmod a+rx /usr/local/bin/streamlink # Set the locale diff --git a/fly.toml b/fly.toml deleted file mode 100644 index 948a47c..0000000 --- a/fly.toml +++ /dev/null @@ -1,41 +0,0 @@ -# fly.toml app configuration file generated for botchini on 2023-05-16T00:54:47-03:00 -# -# See https://fly.io/docs/reference/configuration/ for information about how to use this file. -# - -app = "botchini" -primary_region = "gru" -kill_signal = "SIGTERM" -kill_timeout = "5s" - -[deploy] - release_command = "/app/bin/migrate" - -[env] - PHX_HOST = "botchini.fly.dev" - PORT = "8080" - -[[services]] - protocol = "tcp" - internal_port = 8080 - min_machines_running = 0 - processes = ["app"] - - [[services.ports]] - port = 80 - handlers = ["http"] - force_https = false - - [[services.ports]] - port = 443 - handlers = ["tls", "http"] - [services.concurrency] - type = "connections" - hard_limit = 25 - soft_limit = 20 - - [[services.tcp_checks]] - interval = "15s" - timeout = "2s" - grace_period = "1s" - restart_limit = 0 diff --git a/mix.exs b/mix.exs index cd84154..a18bc6c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Botchini.MixProject do def project do [ app: :botchini, - version: "8.12.2", + version: "8.13.0", elixir: "~> 1.17.0", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,