Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compose/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ RUN pip install --upgrade pip
COPY MANIFEST.in /compose/backend/
COPY pyproject.toml /compose/backend/

RUN pip install --no-cache-dir .[dev]
RUN pip install --no-cache-dir -e .[dev]

# Now copy the rest of the app
COPY . /compose/backend/

RUN pip install --no-cache-dir .
RUN pip install --no-cache-dir -e .
3 changes: 3 additions & 0 deletions compose/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,6 @@ dev = [

[tool.setuptools.packages.find]
include = ["neurosynth_compose*"]

[tool.setuptools.package-data]
neurosynth_compose = ["openapi/**/*"]
4 changes: 2 additions & 2 deletions store/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ RUN npm install -g yarn
RUN pip install --upgrade pip

COPY pyproject.toml /store/backend/
RUN pip install --no-cache-dir .[dev]
RUN pip install --no-cache-dir -e .[dev]

COPY . /store/backend/

RUN pip install --no-cache-dir .
RUN pip install --no-cache-dir -e .
1 change: 1 addition & 0 deletions store/backend/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include neurostore/openapi *
3 changes: 3 additions & 0 deletions store/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ dev = [
"vcrpy~=7.0",
"pytest-recording~=0.13.1",
]

[tool.setuptools.package-data]
neurostore = ["openapi/**/*"]
Loading