Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -9,6 +9,10 @@ WORKDIR /usr/src/app
|
|
| 9 |
COPY package*.json ./
|
| 10 |
|
| 11 |
RUN npm install
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
# If you are building your code for production
|
| 13 |
# RUN npm ci --omit=dev
|
| 14 |
|
|
|
|
| 9 |
COPY package*.json ./
|
| 10 |
|
| 11 |
RUN npm install
|
| 12 |
+
|
| 13 |
+
RUN npm init -y
|
| 14 |
+
|
| 15 |
+
RUN npm install ws
|
| 16 |
# If you are building your code for production
|
| 17 |
# RUN npm ci --omit=dev
|
| 18 |
|