created app skeleton

This commit is contained in:
Evan Lanham
2022-02-02 23:23:43 -07:00
parent 70981f88b2
commit be24aa8076
29 changed files with 2994 additions and 132 deletions
+1
View File
@@ -2,6 +2,7 @@ FROM node:16-alpine as build-step
RUN mkdir /app/
WORKDIR /app/
ENV PATH /app/node_modules/.bin:$PATH
RUN chown -R node:node /app/node_modules
COPY package*.json ./
RUN npm install
COPY . ./