We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc9fa5 commit 798d5a2Copy full SHA for 798d5a2
link_bio/.dockerignore
@@ -0,0 +1,2 @@
1
+.web
2
+__pycache__/*
link_bio/Dockerfile
@@ -0,0 +1,13 @@
+FROM python:3.11
+
3
+WORKDIR /app
4
+COPY . .
5
6
+ENV VIRTUAL_ENV=/app/.venv_docker
7
+ENV PATH="$VIRTUAL_ENV/bin:$PATH"
8
+RUN python3.11 -m venv $VIRTUAL_ENV
9
10
+RUN pip install --upgrade pip
11
+RUN pip install --no-cache-dir -r requirements.txt
12
13
+CMD reflex run --env prod --backend-only
0 commit comments