Docker behaviour changed, fixed

This commit is contained in:
2023-06-26 23:20:34 +10:00
parent 0f2b8d3f52
commit 1b5cbaea17
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
FROM node:18-bullseye-slim
WORKDIR "/app"
COPY package*.json ./
COPY package*.json /app
RUN npm install --production
COPY . /app
EXPOSE 3300
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "chat-server",
"version": "1.4.4",
"version": "1.4.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "chat-server",
"version": "1.4.4",
"version": "1.4.6",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "chat-server",
"version": "1.4.5",
"version": "1.4.6",
"description": "An API centric chat server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js",
"scripts": {