fix install-deps in makefile

This commit is contained in:
AJ Slater 2024-02-23 19:06:35 -08:00
parent 9c052298a3
commit 51f184e546
2 changed files with 3 additions and 1 deletions

View File

@ -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 . .

View File

@ -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