axiodb 2.28.78 → 2.28.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Docker/Dockerfile +20 -0
- package/Docker/runner.js +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Use a specific version of Node.js Alpine with SHA digest
|
|
2
|
+
FROM node:alpine
|
|
3
|
+
|
|
4
|
+
# Set working directory
|
|
5
|
+
WORKDIR /app
|
|
6
|
+
|
|
7
|
+
# Copy the runner.js file
|
|
8
|
+
COPY runner.js .
|
|
9
|
+
|
|
10
|
+
# Copy lib folder with proper directory structure
|
|
11
|
+
COPY lib/ ./lib/
|
|
12
|
+
|
|
13
|
+
# Copy package.json and package-lock.json
|
|
14
|
+
COPY package*.json ./
|
|
15
|
+
|
|
16
|
+
# Install dependencies
|
|
17
|
+
RUN npm install --force
|
|
18
|
+
|
|
19
|
+
# Set the command to run the runner.js file
|
|
20
|
+
CMD ["node", "runner.js"]
|
package/Docker/runner.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axiodb",
|
|
3
|
-
"version": "2.28.
|
|
3
|
+
"version": "2.28.80",
|
|
4
4
|
"description": "A blazing-fast, lightweight, and scalable nodejs package based DBMS for modern application. Supports schemas, encryption, and advanced query capabilities.",
|
|
5
5
|
"main": "./lib/config/DB.js",
|
|
6
6
|
"types": "./lib/config/DB.d.ts",
|