File tree 2 files changed +6
-0
lines changed
{{cookiecutter.project_slug}}/backend 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ COPY ./app/pyproject.toml ./app/poetry.lock* /app/
5
5
6
6
WORKDIR /app/
7
7
8
+ # Neomodel has shapely and libgeos as dependencies
9
+ RUN apt-get update && apt-get install -y libgeos-dev
10
+
8
11
# Allow installing dev dependencies to run tests
9
12
ARG INSTALL_DEV=false
10
13
RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-interaction --no-root ; else poetry install --no-interaction --no-root --no-dev ; fi"
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python
11
11
# Copy poetry.lock* in case it doesn't exist in the repo
12
12
COPY ./app/pyproject.toml ./app/poetry.lock* /app/
13
13
14
+ # Neomodel has shapely and libgeos as dependencies
15
+ RUN apt-get update && apt-get install -y libgeos-dev
16
+
14
17
# Allow installing dev dependencies to run tests
15
18
ARG INSTALL_DEV=false
16
19
RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --no-dev ; fi"
You can’t perform that action at this time.
0 commit comments