Add curl to Dockerfile

This commit is contained in:
Gus Ruben 2025-07-29 19:44:07 -04:00
parent 21ef720101
commit dbf33e9d0e

View file

@ -1,6 +1,9 @@
# Use Node.js LTS version # Use Node.js LTS version
FROM node:20-alpine FROM node:20-alpine
# Install curl
RUN apk add --no-cache curl
# Set the working directory # Set the working directory
WORKDIR /app WORKDIR /app