# Image to build FMD Server reproducibly.
# Simple Debian/stable.
# Installs all the build dependencies from the main Debian repository.

FROM debian:forky-slim

RUN apt update && \
    apt install --no-install-recommends -y ca-certificates git golang zip nodejs && \
    rm -rf /var/lib/apt/lists/* && \
    corepack enable

# TODO: This builds as root, so the files end up being owned as root.
