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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RUN pip install . && \
FROM deps AS dev

COPY . /opt/project
RUN make install-all
RUN make install

# ---------------------------------------------------------------------------------------
# TEST IMAGE (This one allows to check that package is properly installed in prod image)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ upgrade-pip:
install-test: upgrade-pip
python -m pip install -r requirements-test.txt

.PHONY: install-all ## Install the package in editable mode & all dependencies for local development.
install-all: upgrade-pip
.PHONY: install ## Install the package in editable mode & all dependencies for local development.
install: upgrade-pip
python -m pip install -e .[lint,dev,build,test]

.PHONY: test ## Run all unit tests exporting coverage.xml report.
Expand Down
Loading