From af00961a089f75f90b5efbc07663ad5ff4727869 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Fri, 24 Mar 2023 10:16:44 -0700 Subject: [PATCH] Add curl to dependencies --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a82eac9..bbb8a00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM ruby:3.2.1-slim +# OS Level Dependencies RUN apt-get update -qq && apt-get install -yq --no-install-recommends \ build-essential \ gnupg2 \ @@ -8,6 +9,7 @@ RUN apt-get update -qq && apt-get install -yq --no-install-recommends \ libpq-dev \ postgresql-client \ libvips \ + curl \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ENV LANG=C.UTF-8 \