# Debian publishes this image for both amd64 and arm64. Docker therefore
# selects the host architecture automatically (including arm64 on a Pi).
FROM debian:bullseye

ENV DEBIAN_FRONTEND=noninteractive

COPY apt-packages.txt /tmp/
RUN apt-get update -y && xargs apt-get install -y < /tmp/apt-packages.txt

WORKDIR /app
COPY . .
