Add curl to the container so that the run script doesn't need to install it each time.

This commit is contained in:
2025-06-16 15:43:55 -06:00
parent 811442cd94
commit 7265823f58

View File

@ -6,7 +6,7 @@
FROM node:lts-slim FROM node:lts-slim
# Cache System Dependencies # 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 # Cache Node Dependencies
RUN mkdir -p /var/www/api RUN mkdir -p /var/www/api