summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorreturnvalue <chris.fiandaca@outlook.com>2022-09-14 15:20:08 -0400
committerGitHub <noreply@github.com>2022-09-14 14:20:08 -0500
commit0df6872e91e8cc23414d79b3f6ad933d416d7766 (patch)
treefa3f3f5a3bde3c2564497964eb84193b63417faf /Dockerfile
parent38a7c631977ce318957658a3681b8701282ba2f9 (diff)
Updated Dockerfile (#1136)
* Update Dockerfile change the name of the package nodejs-npm to npm Add COPY ./package.json ./package.json line 36
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c47ecf1c..06d72737 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,7 +18,7 @@ RUN apk update \
&& apk del build-deps
# install node and npm
-RUN apk add --update nodejs nodejs-npm
+RUN apk add --update nodejs npm
# install pillow dependencies
RUN apk add build-base python3-dev py-pip jpeg-dev zlib-dev
@@ -33,6 +33,7 @@ RUN apk add git
# install dependencies
RUN pip install --upgrade pip
COPY ./requirements ./requirements
+COPY ./package.json ./package.json
RUN pip install -r ./requirements/dev.txt
RUN pip install -r ./requirements/tests.txt
RUN pip install tox