Skip to content

Commit

Permalink
dubious sphinx changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stargo committed Sep 12, 2024
1 parent 862af79 commit e14e868
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=latest
ARG PYTHON_VERSION=3.8
ARG NGINX_VERSION=latest
FROM python:${PYTHON_VERSION} AS python-dependencies

Expand All @@ -13,11 +13,12 @@ RUN pip install pipenv
WORKDIR /opt/door-commander.betreiberverein.de/

COPY Pipfile .
COPY Pipfile.lock .
#COPY Pipfile.lock .
# We have to enable this to allow the non-root-user to access the write-protected python later on.
# Otherwise, the venv would reside in /root/.local/share/virtualenvs/
ENV PIPENV_VENV_IN_PROJECT=1
# alpine does not support manylinux, and needs to compile psycopg2
RUN pipenv --python 3.8
RUN pipenv install --deploy


Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ rich = "*"
django-debug-toolbar = "*"

[requires]
python_version = "3.8"
python_version = "3.9"

0 comments on commit e14e868

Please sign in to comment.