Organize dockerfiles

This commit is contained in:
Fred Boniface 2023-01-09 15:48:56 +00:00
parent 7592fd8a0c
commit 150a43139f
3 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FROM node:19
WORKDIR /usr/src/app
COPY package*.json ./
COPY ../package*.json ./
RUN npm ci --only=production
COPY . .
COPY .. .
EXPOSE 8460
CMD [ "node", "app.js" ]

View File

@ -0,0 +1 @@
FROM nginx:latest

View File