From 7265823f580672abbe161d3b964e44544c59513d Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 16 Jun 2025 15:43:55 -0600 Subject: [PATCH] Add curl to the container so that the run script doesn't need to install it each time. --- Config/Hyperling.com/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/Hyperling.com/Dockerfile b/Config/Hyperling.com/Dockerfile index ffef3c0..29daecd 100644 --- a/Config/Hyperling.com/Dockerfile +++ b/Config/Hyperling.com/Dockerfile @@ -6,7 +6,7 @@ FROM node:lts-slim # Cache System Dependencies -RUN apt-get update && apt-get install -y git php-cli sudo +RUN apt-get update && apt-get install -y git php-cli sudo curl # Cache Node Dependencies RUN mkdir -p /var/www/api