diff options
| author | returnvalue <chris.fiandaca@outlook.com> | 2022-09-14 15:20:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-14 14:20:08 -0500 |
| commit | 0df6872e91e8cc23414d79b3f6ad933d416d7766 (patch) | |
| tree | fa3f3f5a3bde3c2564497964eb84193b63417faf /Dockerfile | |
| parent | 38a7c631977ce318957658a3681b8701282ba2f9 (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-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |
