Skip to content

Commit

Permalink
remove package-lock.json and generate at built
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper committed Nov 28, 2024
1 parent a0b3d61 commit e288d7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6,017 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ FROM node:lts-alpine
# Set the working directory inside the container
WORKDIR /wis2box-webapp

# copy both 'package.json' and 'package-lock.json' (if available)
COPY package*.json ./
# copy both 'package.json'
COPY package.json ./

# install project dependencies
RUN npm install
RUN npm install --force

# copy project files and folders to the current working directory
COPY . .
Expand Down
Loading

0 comments on commit e288d7f

Please sign in to comment.