Added jq to docker deps

This commit is contained in:
Kieran Eglin 2024-05-01 14:45:20 -07:00
parent e0d6f0ad88
commit f371f14de7
No known key found for this signature in database
GPG key ID: 193984967FCF432D
3 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ FROM ${DEV_IMAGE}
# Install debian packages # Install debian packages
RUN apt-get update -qq RUN apt-get update -qq
RUN apt-get install -y inotify-tools ffmpeg curl git openssh-client \ RUN apt-get install -y inotify-tools ffmpeg curl git openssh-client jq \
python3 python3-pip python3-setuptools python3-wheel python3-dev locales procps python3 python3-pip python3-setuptools python3-wheel python3-dev locales procps
# Install nodejs # Install nodejs

View file

@ -44,7 +44,7 @@ defmodule Pinchflat.Lifecycle.UserScripts.CommandRunner do
executable_path, executable_path,
[to_string(event_type), encoded_data], [to_string(event_type), encoded_data],
[], [],
logging_arg_override: "[supressed]" logging_arg_override: "[suppressed]"
) )
handle_output(output, exit_code) handle_output(output, exit_code)
@ -56,7 +56,7 @@ defmodule Pinchflat.Lifecycle.UserScripts.CommandRunner do
end end
defp handle_output(output, exit_code) do defp handle_output(output, exit_code) do
Logger.debug("Custom lifecycle script had an exit code of #{exit_code} output: #{output}") Logger.debug("Custom lifecycle script exit code: #{exit_code} with output: #{output}")
:ok :ok
end end

View file

@ -79,7 +79,7 @@ ARG PORT=8945
RUN apt-get update -y RUN apt-get update -y
RUN apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates \ RUN apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates \
ffmpeg curl git openssh-client nano python3 python3-pip ffmpeg curl git openssh-client nano python3 python3-pip jq procps
RUN apt-get clean && rm -f /var/lib/apt/lists/*_* RUN apt-get clean && rm -f /var/lib/apt/lists/*_*
# Download and update YT-DLP # Download and update YT-DLP