fix install-deps in makefile
This commit is contained in:
parent
9c052298a3
commit
51f184e546
@ -15,6 +15,6 @@ WORKDIR /app
|
|||||||
|
|
||||||
COPY bin ./bin
|
COPY bin ./bin
|
||||||
COPY package.json package-lock.json pyproject.toml poetry.lock Makefile ./
|
COPY package.json package-lock.json pyproject.toml poetry.lock Makefile ./
|
||||||
RUN make install-all
|
RUN make install-deps install-all
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,7 @@
|
|||||||
.PHONY: install-deps
|
.PHONY: install-deps
|
||||||
## Update pip and install poetry
|
## Update pip and install poetry
|
||||||
|
## @category Install
|
||||||
|
install-deps:
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
pip install --upgrade poetry
|
pip install --upgrade poetry
|
||||||
npm install
|
npm install
|
||||||
|
Loading…
Reference in New Issue
Block a user