aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index b43d1a2e..c65b41f0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -28,8 +28,10 @@ COPY wait-for-postgres.sh .
RUN chmod +x ./wait-for-postgres.sh
+RUN mkdir node_modules
RUN npm install
-COPY node_modules newspipe/static/npm_components
+RUN mkdir -p newspipe/static/npm_components
+RUN cp -R node_modules/* newspipe/static/npm_components/
RUN pip install poetry
RUN poetry install
bgstack15