Skip to content

Commit aa4f570

Browse files
committed
wip
1 parent 769c8d5 commit aa4f570

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,17 @@ RUN python -m venv $POETRY_HOME
3636

3737
RUN $POETRY_HOME/bin/pip install poetry==2.1.1
3838

39-
COPY ./ /code/
39+
COPY pyproject.toml .
40+
COPY poetry.lock .
4041

4142
RUN $POETRY_HOME/bin/poetry install --no-root --compile
4243

4344
RUN apt-get remove -y \
4445
gcc \
4546
zlib1g-dev
4647

48+
COPY ./ /code/
49+
4750
RUN python manage.py collectstatic --noinput
4851

4952
ARG GIT_TAG=

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "SHARE/trove"
2+
name = "shtrove"
33
version = "25.1.1" # TODO: get version from share/version.py
44
description = ""
55
authors = [

0 commit comments

Comments
 (0)