| FROM python:3.11 | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| ENV PATH="/home/user/.local/bin:$PATH" | |
| WORKDIR /app | |
| # Install python packages | |
| COPY --chown=user ./requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| ## Download all npm dependencies and compile frontend | |
| #RUN reflex export --frontend-only --no-zip && mv .web/_static/* /srv/ && rm -rf .web | |
| # | |
| ## Needed until Reflex properly passes SIGTERM on backend. | |
| #STOPSIGNAL SIGKILL | |
| ENV PATH="/app/prompt_order_experiment:$PATH" | |
| COPY --chown=user . /app | |
| ENTRYPOINT ["reflex", "run", "--env", "dev", "--loglevel", "debug" ] | |