Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -3,7 +3,7 @@ FROM node:18
|
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
# Copy only package.json and yarn.lock into /app
|
| 6 |
-
COPY package.json
|
| 7 |
|
| 8 |
# Install dependencies in /app
|
| 9 |
RUN yarn install
|
|
|
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
# Copy only package.json and yarn.lock into /app
|
| 6 |
+
COPY package.json /app/
|
| 7 |
|
| 8 |
# Install dependencies in /app
|
| 9 |
RUN yarn install
|