mirror of
https://github.com/simple-login/app.git
synced 2025-02-22 14:53:34 +08:00
Fix: Use npm ci instead of install to prevent install different versions (#1543)
Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
This commit is contained in:
parent
e6cdabd46e
commit
650a74ac00
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
FROM node:10.17.0-alpine AS npm
|
||||
WORKDIR /code
|
||||
COPY ./static/package*.json /code/static/
|
||||
RUN cd /code/static && npm install
|
||||
RUN cd /code/static && npm ci
|
||||
|
||||
# Main image
|
||||
FROM python:3.10
|
||||
|
|
Loading…
Reference in a new issue