Ver código fonte

fix docker example (#2086)

dodeca-6-tope 1 ano atrás
pai
commit
e81839fca1
1 arquivos alterados com 1 adições e 1 exclusões
  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