Skip to content

Commit

Permalink
Use package-lock.json in Docker image building
Browse files Browse the repository at this point in the history
  • Loading branch information
akikoskinen committed Mar 1, 2022
1 parent f9c5b18 commit 297b5a0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Expand Up @@ -19,6 +19,7 @@ WORKDIR /app

COPY requirements.txt /app/requirements.txt
COPY package.json /app/package.json
COPY package-lock.json /app/package-lock.json
RUN pip install -U pip \
&& pip install --no-cache-dir -r /app/requirements.txt
RUN npm install
Expand Down

0 comments on commit 297b5a0

Please sign in to comment.