File size: 615 Bytes
fb2eb9b
 
 
 
 
 
 
 
9990990
fb2eb9b
 
 
9990990
 
 
 
 
 
 
 
fb2eb9b
9990990
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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" ]