FROM docker.io/python:3.11-slim
LABEL org.opencontainers.image.source=https://github.com/amortized-ai/asynth

WORKDIR /build
COPY . .
RUN pip install --no-cache-dir .
WORKDIR /

USER 1001
