Make a local master

This commit is contained in:
Matthew Raymer
2023-09-10 06:59:34 -04:00
parent 5f05a2eec6
commit 160c0ceff7
3 changed files with 3 additions and 4 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
*~
node_modules
build
web_push

View File

@@ -1,5 +1,6 @@
FROM node:18.17.1-alpine3.17
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package*.json ./
@@ -8,11 +9,8 @@ COPY .eslintrc.json ./
COPY src ./src
RUN npm install
RUN npm run build
COPY . .
EXPOSE 3000
CMD [ "npm", "start" ]

Binary file not shown.