FROM ghcr.io/hasura/ndc-nodejs-lambda:v1.20.3

COPY package-lock.json package.json /functions/

WORKDIR /functions
RUN --mount=type=cache,target=/root/.npm \
    npm ci

COPY ./ /functions
