General fixing time,,,

This commit is contained in:
Bingus_Violet 2023-11-17 17:58:39 +00:00
parent dd9c8c65d6
commit 131532729b
8 changed files with 583 additions and 13 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:20
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npm", "start" ]