FROM node:24-bookworm-slim

LABEL parent-images=node24

# Run updates and install additional packages
RUN apt-get -y update \
  && apt-get -y upgrade \
  && apt-get -y install curl \
  && apt-get -y clean \
  && rm -rf /var/lib/apt/lists/*

# Run container as the nonroot user.
USER node
