General fixing time,,,
This commit is contained in:
parent
dd9c8c65d6
commit
131532729b
8 changed files with 583 additions and 13 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
FROM node:20
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD [ "npm", "start" ]
|
Loading…
Add table
Add a link
Reference in a new issue