huge inital commit
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:20.10.0
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY package.json ./package.json
|
||||
COPY package-lock.json ./package-lock.json
|
||||
|
||||
RUN npm i
|
||||
|
||||
COPY . .
|
||||
CMD ["npm", "run" ,"start"]
|
||||
Reference in New Issue
Block a user