cacb065
ba558e6
20c47af
da9b1f7
|
|
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends postgresql-client \
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*
|