From deb762e763d02adbaadbbbcd580f71bd6ae6bb9f Mon Sep 17 00:00:00 2001 From: Joseph Date: Sat, 18 Jan 2025 19:58:04 +0300 Subject: [PATCH] build: update docker image configuration --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5dcd73..c47830f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim-bookworm AS base +FROM debian:bookworm-slim AS base # variable store ARG WDIR=/zero_build @@ -44,5 +44,5 @@ RUN python3 -m pip install pip --upgrade && \ # RUN uv run ${WDIR}/builder/utils/bridge.py --shared -# launch app -CMD [ "/bin/bash" ] +# activate .venv +CMD [ "source", ".venv/bin/activate" ]