aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index e8e39ec5..b43d1a2e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,7 +13,6 @@ RUN apk update && \
postgresql-client \
postgresql-dev \
npm
-RUN pip install poetry
WORKDIR newspipe
@@ -32,4 +31,5 @@ RUN chmod +x ./wait-for-postgres.sh
RUN npm install
COPY node_modules newspipe/static/npm_components
+RUN pip install poetry
RUN poetry install
bgstack15