Compare commits

..

14 Commits

Author SHA1 Message Date
Kayne Ruse a6c627a178 Docker behaviour changed, fixed 2023-06-26 23:18:42 +10:00
Kayne Ruse 763ddd8bd7 Updated dependencies, bumped patch version 2023-06-26 23:04:23 +10:00
Kayne Ruse 3016a6da70 Updated dependencies 2023-05-03 21:29:58 +10:00
Kayne Ruse f0b2433b59 Updated depencencies, bumped version 2023-03-25 01:47:30 +11:00
Kayne Ruse b92c75b131 Updated dependencies 2023-03-19 02:52:11 +11:00
Kayne Ruse 4ca4fd9559 Updated dependencies 2023-02-21 09:30:09 +11:00
Kayne Ruse 3deacd7e80 Updated dependencies, License 2023-01-12 08:08:22 +11:00
Kayne Ruse a0f44eacce Bumped version number 2023-01-04 12:56:30 +00:00
Kayne Ruse 87eeb7f553 Switched to a slim docker distro 2023-01-04 23:51:34 +11:00
Kayne Ruse 2d06d34c7c Updated libraries 2022-12-31 19:00:56 +00:00
Kayne Ruse 3f8f8fa773 Updated dependencies 2022-11-29 05:05:59 +00:00
Kayne Ruse 5f72eae55c Updated dependencies 2022-11-13 02:11:24 +00:00
Kayne Ruse 96e580e56a Bumped version number 2022-08-01 10:37:51 +01:00
Kayne Ruse ca12844268 Updated dependencies 2022-08-01 10:35:58 +01:00
5 changed files with 170 additions and 1264 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
FROM node:16
FROM node:18-bullseye-slim
WORKDIR "/app"
COPY package*.json ./
COPY package*.json /app
RUN npm install --production
COPY . /app
EXPOSE 3100
+1 -1
View File
@@ -1,4 +1,4 @@
Copyright (c) 2021 Kayne Ruse, KR Game Studios
Copyright (c) 2021-2023 Kayne Ruse, KR Game Studios
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
+1 -1
View File
@@ -111,7 +111,7 @@ networks:
`;
const dockerfile = `
FROM node:16
FROM node:18-bullseye-slim
WORKDIR "/app"
COPY package*.json ./
RUN npm install --production
+155 -1252
View File
File diff suppressed because it is too large Load Diff
+11 -8
View File
@@ -1,6 +1,6 @@
{
"name": "news-server",
"version": "1.5.0",
"version": "1.6.5",
"description": "An API centric news server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js",
"scripts": {
@@ -20,14 +20,17 @@
"homepage": "https://github.com/krgamestudios/news-server#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.4",
"markdown-it": "^12.3.0",
"sequelize": "^6.6.5"
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mariadb": "^3.2.0",
"markdown-it": "^13.0.1",
"sequelize": "^6.32.1"
},
"devDependencies": {
"nodemon": "^2.0.12"
"nodemon": "^2.0.22"
},
"overrides": {
"semver": "^7.5.2"
}
}