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 769c8d5 commit aa4f570Copy full SHA for aa4f570
Dockerfile
@@ -36,14 +36,17 @@ RUN python -m venv $POETRY_HOME
36
37
RUN $POETRY_HOME/bin/pip install poetry==2.1.1
38
39
-COPY ./ /code/
+COPY pyproject.toml .
40
+COPY poetry.lock .
41
42
RUN $POETRY_HOME/bin/poetry install --no-root --compile
43
44
RUN apt-get remove -y \
45
gcc \
46
zlib1g-dev
47
48
+COPY ./ /code/
49
+
50
RUN python manage.py collectstatic --noinput
51
52
ARG GIT_TAG=
pyproject.toml
@@ -1,5 +1,5 @@
1
[project]
2
-name = "SHARE/trove"
+name = "shtrove"
3
version = "25.1.1" # TODO: get version from share/version.py
4
description = ""
5
authors = [
0 commit comments