Docker behaviour changed, fixed

This commit is contained in:
2023-06-26 23:19:53 +10:00
parent d3e90f7d5d
commit fd0c40d444
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 3200