Add curl to dependencies

This commit is contained in:
Ryan Williams
2023-03-24 10:16:44 -07:00
committed by GitHub
parent 2cef37c339
commit af00961a08
+2
View File
@@ -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 \