DOCKER SUPPORT !
This commit is contained in:
parent
db38f8c4d6
commit
e0691ef44e
3 changed files with 16 additions and 1 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 [ "node", "index.js" ]
|
Loading…
Add table
Add a link
Reference in a new issue