Explorar o código

fix docker example (#2086)

dodeca-6-tope hai 1 ano
pai
achega
e81839fca1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docker-example/Dockerfile

+ 1 - 1
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