# Minimal Node sample used by the CI image-deploy workflow.
FROM node:22-alpine
WORKDIR /app
COPY app/package.json ./
COPY app/server.mjs app/server.test.mjs ./
# Image tests run against this exact build (see workflow).
CMD ["node", "server.mjs"]
