2026-01-17 17:51:21 -03:00
|
|
|
FROM python:3.11-slim
|
|
|
|
|
|
|
|
|
|
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
|
|
|
|
|
|
2026-04-22 00:41:40 -03:00
|
|
|
RUN pip install --no-cache-dir requests psycopg2-binary \
|
|
|
|
|
&& groupadd --system guest-tools \
|
|
|
|
|
&& useradd --system --uid 65532 --gid guest-tools --home-dir /nonexistent --shell /usr/sbin/nologin guest-tools
|
|
|
|
|
|
|
|
|
|
USER guest-tools
|