create-react-app and couchdb

This commit is contained in:
Aquaticholic
2021-09-23 14:01:02 -06:00
parent 008c033e97
commit 3e543b37f7
44 changed files with 42911 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:16.9.1-alpine3.11
WORKDIR /app
COPY package*.json ./
RUN npm install
# COPY . ./
EXPOSE 3000
RUN chown -R node /app/node_modules
USER node
CMD [ "npm", "start"]