reflex/integration/init-test/Dockerfile
Masen Furer 2883e541a9
Bring back py3.9 support with a deprecation warning. (#3976)
* Revert "ruff formatting to unbreak `main` CI (#3964)"

This reverts commit f9be184b86.

* Revert "bump python>=3.10 for 0.6.0 (#3956)"

This reverts commit fe1833c5e1.

* drop python3.8 support

* relock dependencies

* Raise warning when < py310 is used

* Move python version check to reflex version check function

Avoid spammy deprecation warnings by only emitting warning once per project,
per reflex version, per reinit.

* Remove other references to python3.8
2024-09-23 18:15:16 -07:00

9 lines
182 B
Docker

FROM python:3.9
ARG USERNAME=kerrigan
RUN useradd -m $USERNAME
RUN apt-get update && apt-get install -y redis && rm -rf /var/lib/apt/lists/*
USER $USERNAME
WORKDIR /home/$USERNAME