소스 검색

fix docker example (#2086)

dodeca-6-tope 1 년 전
부모
커밋
e81839fca1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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