This commit is contained in:
2024-12-02 02:16:00 +05:00
commit 2debea82f9
693 changed files with 103427 additions and 0 deletions

21
noviews/dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM node:16
# Create app directory
WORKDIR /app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
RUN npm install
# If you are building your code for production
# RUN npm ci --only=production
# Bundle app source
#COPY . .
#EXPOSE 8080
CMD [ "node", "index.js" ]