mirror of
https://github.com/Ratstail91/sineql-demo.git
synced 2026-05-05 15:20:10 +10:00
Updated dependencies
This commit is contained in:
+2
-2
@@ -1,8 +1,8 @@
|
||||
FROM node:18-bullseye-slim
|
||||
FROM node:24-bullseye-slim
|
||||
WORKDIR "/app"
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . /app
|
||||
EXPOSE 4000
|
||||
ENTRYPOINT ["bash", "-c"]
|
||||
CMD ["npm start"]
|
||||
CMD ["npm start"]
|
||||
|
||||
Generated
+582
-326
File diff suppressed because it is too large
Load Diff
+8
-10
@@ -6,22 +6,20 @@
|
||||
"scripts": {
|
||||
"start": "node server/index.js",
|
||||
"dev": "nodemon server/index.js",
|
||||
"docker": "npm run docker:build && npm run docker:push",
|
||||
"docker:build": "docker buildx build . --platform linux/amd64 --tag docker.krgamestudios.com/krgamestudios/sineql-demo:latest",
|
||||
"docker:push": "docker push docker.krgamestudios.com/krgamestudios/sineql-demo:latest"
|
||||
"docker": "docker buildx build . --platform linux/amd64 --tag sineql-demo:latest"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"dotenv": "^16.0.3",
|
||||
"express": "^4.18.2",
|
||||
"mariadb": "^3.0.2",
|
||||
"node-fetch": "^2.6.8",
|
||||
"sequelize": "^6.28.0",
|
||||
"sineql": "^1.0.4"
|
||||
"dotenv": "^16.6.1",
|
||||
"express": "^4.21.2",
|
||||
"mariadb": "^3.4.5",
|
||||
"node-fetch": "^2.7.0",
|
||||
"sequelize": "^6.37.7",
|
||||
"sineql": "^1.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^2.0.22"
|
||||
"nodemon": "^3.1.11"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -30,4 +30,4 @@ const port = process.env.WEB_PORT || 4000;
|
||||
app.listen(port, async err => {
|
||||
await database.sync();
|
||||
console.log(`listening to *:${port}`);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user