We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f26dd commit 1e27254Copy full SHA for 1e27254
Dockerfile
@@ -0,0 +1,17 @@
1
+FROM node:22-alpine
2
+
3
+# Set the working directory in the container
4
+WORKDIR /usr/src/app
5
6
+# Copy package.json and package-lock.json
7
+COPY package*.json ./
8
9
+# Install dependencies
10
+RUN npm install
11
12
+# Copy the rest of the application code
13
+COPY . .
14
15
+# Set the entry point for the container to run your CLI app
16
+ENTRYPOINT ["node", "wmiocli.js"]
17
0 commit comments