From 51f184e546b911e58a525004478afaecb9d35bd8 Mon Sep 17 00:00:00 2001 From: AJ Slater Date: Fri, 23 Feb 2024 19:06:35 -0800 Subject: [PATCH] fix install-deps in makefile --- Dockerfile | 2 +- Makefile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28b7b97..135775c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,6 @@ WORKDIR /app COPY bin ./bin COPY package.json package-lock.json pyproject.toml poetry.lock Makefile ./ -RUN make install-all +RUN make install-deps install-all COPY . . diff --git a/Makefile b/Makefile index 577ebac..84ad134 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ .PHONY: install-deps ## Update pip and install poetry +## @category Install +install-deps: pip install --upgrade pip pip install --upgrade poetry npm install