aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-20 23:04:03 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-20 23:04:03 +0100
commitf1198fb91a3db412758b54a2c92905cdb6ab3702 (patch)
tree2ab7a99b93942f3d4c2528149ca128b285026b3c
parentredirect output of db_create to /dev/null (diff)
downloadnewspipe-f1198fb91a3db412758b54a2c92905cdb6ab3702.tar.gz
newspipe-f1198fb91a3db412758b54a2c92905cdb6ab3702.tar.bz2
newspipe-f1198fb91a3db412758b54a2c92905cdb6ab3702.zip
Updated docker file.
-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