Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ FROM node:18-alpine
|
|
4 |
# Set the working directory to /app
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
RUN npm init -y
|
8 |
|
9 |
# Copy package.json and package-lock.json (if available)
|
10 |
COPY package*.json ./
|
|
|
4 |
# Set the working directory to /app
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
RUN npm init -y && npm i requests
|
8 |
|
9 |
# Copy package.json and package-lock.json (if available)
|
10 |
COPY package*.json ./
|