Docker behaviour changed, fixed

This commit is contained in:
2023-06-26 23:18:15 +10:00
parent 763ddd8bd7
commit a6c627a178
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 3100