From e81839fca1b92237f03fe4e65bb9def120ae3cfd Mon Sep 17 00:00:00 2001 From: dodeca-6-tope <21145501+dodeca-6-tope@users.noreply.github.com> Date: Tue, 31 Oct 2023 19:17:03 +0200 Subject: [PATCH] fix docker example (#2086) --- docker-example/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-example/Dockerfile b/docker-example/Dockerfile index a0c68944c..f9da48b6b 100644 --- a/docker-example/Dockerfile +++ b/docker-example/Dockerfile @@ -11,7 +11,7 @@ COPY . . # Create virtualenv which will be copied into final container ENV VIRTUAL_ENV=/app/.venv ENV PATH="$VIRTUAL_ENV/bin:$PATH" -RUN python3 -m venv $VIRTUAL_ENV +RUN python3.11 -m venv $VIRTUAL_ENV # Install app requirements and reflex inside virtualenv RUN pip install -r requirements.txt