Copying over from WrenchBoradWeb to new repository

This commit is contained in:
2022-05-07 23:20:17 -04:00
commit 6543a2f6c7
18 changed files with 848 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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" ]