fixing generation
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-01-05 13:50:20 +01:00
parent c188cac90b
commit 2004409321
3 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
# Stage 1: init
FROM python:3.11 as init
FROM python:3.12 as init
# Pass `--build-arg API_URL=http://app.example.com:8000` during build
ARG API_URL
@@ -9,15 +8,18 @@ WORKDIR /app
ENV VIRTUAL_ENV=/app/.venv
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN python3.11 -m venv $VIRTUAL_ENV
RUN python3.12 -m venv $VIRTUAL_ENV
COPY requirements.txt .
# Install app requirements and reflex inside virtualenv
RUN pip install -r requirements.txt
RUN $VIRTUAL_ENV/bin/pip install -r requirements.txt
COPY . .
COPY deploy/* .
# Deploy templates and prepare app
RUN reflex init
# vim:set ft=dockerfile: