first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-12-21 09:55:29 -05:00
commit 1f2d886553
22 changed files with 1395 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:erbium
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install
COPY . /usr/src/app
CMD [ "npm", "start" ]