FROM ubuntu:24.04

# Install Node.js for migration tooling.
RUN apt-get update \
    && apt-get install -y nodejs npm \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY template /app/input
