Skip to content

Commit

Permalink
chore: Update frontend Dockerfile to only copy package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
SverreNystad committed May 11, 2024
1 parent 179036a commit 6554e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ FROM node:18-alpine
# Set the working directory
WORKDIR /app

# Copy the package.json and package-lock.json
COPY package.json package-lock.json ./
# Copy the package.json
COPY package.json ./

# Install dependencies
RUN npm install
Expand Down

0 comments on commit 6554e73

Please sign in to comment.